You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.1 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1">
  5. <title>Tovi Jaeschke's Homepage</title>
  6. <link rel="stylesheet" type="text/css" href="/css/main.css">
  7. <link href='https://fonts.googleapis.com/css?family=Average|Montserrat' rel='stylesheet' type='text/css'>
  8. <link rel="stylesheet" href="/css/prism.css">
  9. <script src="/js/prism.js"></script>
  10. <script type="text/javascript" src="/js/script.js"></script>
  11. <script type="text/javascript" src="/js/code_resize.js"></script>
  12. </head>
  13. <body>
  14. {{ template "header.gohtml" . }}
  15. <div class="container">
  16. {{ template "sidebar.gohtml" . }}
  17. <div class="main">
  18. {{ if eq .PageView "index-intro.gohtml" }}
  19. {{ template "index-intro.gohtml" . }}
  20. {{ else if eq .PageView "post-list.gohtml" }}
  21. {{ template "post-list.gohtml" . }}
  22. {{ else if eq .PageView "post.gohtml" }}
  23. {{ template "post.gohtml" . }}
  24. {{ end }}
  25. </div>
  26. </div>
  27. <footer>
  28. <a href="mailto:tovi@tovijaeschke.xyz">tovi@tovijaeschke.xyz</a>
  29. <p>Last updated: {{ FormatTimestamp .LastUpdatedAt }}</p>
  30. </footer>
  31. </body>
  32. </html>