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 <div class="logo">
13 <a href=/>
14 <img src="/static/logo.png" alt="forlater.email logo" height="100" width="100"/>
15 </a>
16 </div>
17 <h1 class="big">forlater<span style="color:
18 #509c93">.email</span><span style="font-size:
19 24px"> (beta)</span></h1>
20 <h2 class="subbig">{{ index .Meta "subtitle" }}</h2>
21 </header>
22 <article align="left">
23 {{ .Body }}
24 </article>
25 </main>
26 <!-- <footer>
27 {{ template "footer.html" }}
28 </footer>!-->
29</body>
30
31</html>