From 5d8abe6eae6d3be2ccdb001341bb5aa2ffc1a086 Mon Sep 17 00:00:00 2001 From: Kollin Date: Wed, 30 Apr 2014 15:25:44 +0800 Subject: [PATCH] update home template css --- templates/home.html | 30 +++++++++++++++++++++++------- web.go | 1 + 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/templates/home.html b/templates/home.html index 18b66be..4e8ac9d 100644 --- a/templates/home.html +++ b/templates/home.html @@ -1,9 +1,25 @@ - - Reife -- Record your life. - - -

Hello.

-

The app coming soon.

- + + + Reife -- Record your life. + + + + + + +
+

Reife

+

Record your life.

+

The App coming soon!

+
+ \ No newline at end of file diff --git a/web.go b/web.go index 5323230..b2a0c82 100644 --- a/web.go +++ b/web.go @@ -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)