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></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>