default.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <title>$title$ :: john's blog</title>
  8. <link rel="stylesheet" type="text/css" href="/css/default.css" />
  9. <script type="text/javascript"
  10. src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
  11. </script>
  12. <script>
  13. MathJax.Hub.Config({
  14. jax: ["input/TeX","output/HTML-CSS"],
  15. displayAlign: "left",
  16. displayIndent: "10%"
  17. });
  18. </script>
  19. </head>
  20. <body>
  21. <div id="header">
  22. <div id="logo">
  23. <a href="/">John's Corner of the Web</a>
  24. </div>
  25. </div>
  26. <div id="navigation">
  27. <a href="/">Home</a><br/>
  28. <a href="/about.html">About</a><br/>
  29. <a href="/work.html">Work</a><br/>
  30. <a href="/talks.html">Talks</a><br/>
  31. <a href="/stuff.html">Stuff</a><br/>
  32. <a href="/archive.html">Archive</a><br/>
  33. </div>
  34. <div id="content">
  35. <h1>$title$</h1>
  36. $body$
  37. </div>
  38. <div id="footer">
  39. All content copyright 2016-2018, john melesky, unless otherwise noted.
  40. </div>
  41. </body>
  42. </html>