Personal website https://benkurtovic.com/
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.
 
 
 
 

30 lines
1.3 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. {% if page.title == "Home" %}
  6. <title>Ben Kurtovic</title>
  7. {% else %}
  8. <title>{{ page.title }} - Ben Kurtovic</title>
  9. {% endif %}
  10. <link rel="stylesheet" href="/static/main.css" />
  11. <link rel="stylesheet" href="/static/syntax.css" /> <!-- shamelessly stolen from https://github.com/mojombo/tpw/blob/master/css/syntax.css -->
  12. <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
  13. <script src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
  14. </head>
  15. <body>
  16. <div id="banner" class="banner-{% if page.title == "Home" %}large{% else %}small{% endif %}">
  17. <a href="/">
  18. <img src="/static/avatar.png" />
  19. <h1>Ben Kurtovic</h1>
  20. </a>
  21. </div>
  22. <div id="container">
  23. {{ content }}
  24. <div id="footer">
  25. <p>Copyright &copy; 2011&ndash;{{ site.time | date: "%Y" }} Ben Kurtovic &bull; <a href="//github.com/earwig/earwig.github.io">View Source</a> &bull; <a href="http://validator.w3.org/check?uri=referer">Valid HTML5</a></p>
  26. </div>
  27. </div>
  28. </body>
  29. </html>