diff options
author | raylu <raylu@mixpanel.com> | 2011-08-09 22:56:56 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-08-09 22:56:56 -0700 |
commit | 163983e794867d6099908ade5649e51bc4c00f7b (patch) | |
tree | 3718e0ce7a8b2b6ab648e73fbd2fa52dcdc409e3 /templates | |
parent | 8a05f63c5c9d52c0c6165d9785498a13e9306ced (diff) | |
download | audioaxis-163983e794867d6099908ade5649e51bc4c00f7b.tar.xz |
refactor base.css
Diffstat (limited to 'templates')
-rw-r--r-- | templates/header.html | 1 | ||||
-rw-r--r-- | templates/home.html | 2 | ||||
-rw-r--r-- | templates/p.html | 3 |
3 files changed, 4 insertions, 2 deletions
diff --git a/templates/header.html b/templates/header.html index 8b65ad6..ca97f81 100644 --- a/templates/header.html +++ b/templates/header.html @@ -8,6 +8,7 @@ --> <link href="/static/cantarell.css" rel="stylesheet"> <link href="/static/base.css" rel="stylesheet"> + {{.}} </head> <body> diff --git a/templates/home.html b/templates/home.html index 7e7e9e3..bdc01b5 100644 --- a/templates/home.html +++ b/templates/home.html @@ -1,4 +1,4 @@ -{{template "header.html"}} +{{template "header.html" ""}} <header> <img src="/static/audioaxis-white.png" alt="Audio Axis" class="aa"> diff --git a/templates/p.html b/templates/p.html index d434052..41815f7 100644 --- a/templates/p.html +++ b/templates/p.html @@ -1,4 +1,5 @@ -{{template "header.html"}} +{{$head := `<link href="/static/p.css" rel="stylesheet">`}} +{{template "header.html" $head}} <header> <img src="/static/audioaxis-white.png" alt="Audio Axis" class="aa"> |