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.

пре 12 година
пре 12 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>{% if page.title != "Home" %}{{ page.title }} - {% endif %}Ben Kurtovic</title>
  6. <link rel="icon" type="image/png" href="/static/favicon.png" />
  7. <link rel="stylesheet" href="/static/main.css" />
  8. <link rel="stylesheet" href="/static/syntax.css" /> <!-- shamelessly stolen from https://github.com/mojombo/tpw/blob/master/css/syntax.css -->
  9. <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
  10. <script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
  11. <script src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
  12. <script src="/static/main.js"></script>
  13. </head>
  14. <body>
  15. <div id="banner">
  16. <a href="/">
  17. <img src="/static/avatar.png" />
  18. <h1>Ben Kurtovic</h1>
  19. </a>
  20. </div>
  21. <div id="container">
  22. {{ content }}
  23. <div id="footer">
  24. <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>
  25. </div>
  26. </div>
  27. </body>
  28. </html>