templates/index.html (view raw)
1<!DOCTYPE html>
2<html lang=en>
3 <head>
4 {{ template "head.html" }}
5 <meta name="description" content="{{ index .Meta "subtitle" }}">
6 </head>
7 <title>
8 {{ index .Meta "title" }}
9 </title>
10 <body>
11 <main>
12 <header>
13 {{ template "nav.html" }}
14 <div class="logo">
15 <a href=/>
16 <img src="/static/logo.png" alt="forlater.email logo" height="100" width="100"/>
17 </a>
18 </div>
19 <h1 class="big">forlater<span style="color:
20 #509c93">.email</span><span style="font-size:
21 24px"> (beta)</span></h1>
22 <h2 class="subbig">{{ index .Meta "subtitle" }}</h2>
23 </header>
24 <article align="left">
25 {{ .Body }}
26 </article>
27 </main>
28 <!-- <footer>
29 {{ template "footer.html" }}
30 </footer>!-->
31</body>
32
33</html>