Skip to content

Commit

Permalink
update home template css
Browse files Browse the repository at this point in the history
  • Loading branch information
kuozo committed Apr 30, 2014
1 parent 093f671 commit 5d8abe6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
30 changes: 23 additions & 7 deletions templates/home.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
<html>
<head>
<title>Reife -- Record your life.</title>
</head>
<body>
<h2>Hello.</h2>
<p>The app coming soon.</p>
</body>
<head>
<meta charset="utf-8">
<title>Reife -- Record your life.</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="http://cdn.staticfile.org/twitter-bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://reife.u.qiniudn.com/cssflat-ui.css">
<style type="text/css">
.container{
background-color: #1abc9c;
min-height: 100%;
overflow: hidden;
padding: 0;
width: 100%;
}
</style>
</head>
<body>
<div class="container">
<h1>Reife</h1>
<h2>Record your life.</h2>
<p>The App coming soon!</p>
</div>
</body>
</html>
1 change: 1 addition & 0 deletions web.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
)

func HomeHandler(w http.ResponseWriter, req *http.Request) {
fmt.Println("Request from HomeHandler")
t, err := template.ParseFiles("templates/home.html")
if err != nil {
fmt.Println(err)
Expand Down

0 comments on commit 5d8abe6

Please sign in to comment.