templates/page.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 <a href=/>
13 <img src="/static/logo.png" alt="forlater.email logo" height="70" width="70"/>
14 </a>
15 </header>
16 <article align="left">
17 <h1>{{ index .Meta "title" }}</h1>
18 {{ .Body }}
19 </article>
20 </main>
21 <footer>
22 {{ template "footer.html" }}
23 </footer>
24</body>
25
26</html>