all repos — web @ e384985a4893dde97671c8b2601facf719b2188c

Landing page for forlater.email

templates/index.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
 27
 28
 29
 30
 31
 32
<!DOCTYPE html>
<html lang=en>
  <head>
    {{ template "head.html" }}
    <meta name="description" content="{{ index .Meta "subtitle" }}">
  </head>
  <title>
    {{ index .Meta "title" }}
  </title>
  <body>
  <main>
    <header>
      {{ template "nav.html" }}
      <div class="logo">
      <a href=/>
        <img src="/static/logo.png" alt="forlater.email logo" height="100" width="100"/>
      </a>
      </div>
      <h1 class="big">forlater<span style="color:
                 #509c93">.email</span></h1>
      <h2 class="subbig">{{ index .Meta "subtitle" }}</h2>
    </header>
    <article align="left">
      {{ .Body }}
    </article>
  </main>
  <!--  <footer>
    {{ template "footer.html" }}
    </footer>!-->
</body>

</html>