all repos — web @ 5be034071ea11c61ab4b1391037ef04338538ec8

Landing page for forlater.email

templates/page.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
<!DOCTYPE html>
<html lang=en>
  <head>
    {{ template "head.html" }}
  </head>
  <title>
    {{ index .Meta "title" }}
  </title>
  <body>
  <main>
    <header>
      <a href=/>
        <img src="/static/logo.png" alt="forlater.email logo" height="70" width="70"/>
      </a>
    </header>
    <article align="left">
      <h1>{{ index .Meta "title" }}</h1>
      {{ .Body }}
    </article>
  </main>
  <footer>
    {{ template "footer.html" }}
  </footer>
</body>

</html>