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