mirror of
https://github.com/TomHodson/tomhodson.github.com.git
synced 2025-06-26 10:01:18 +02:00
33 lines
790 B
HTML
33 lines
790 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Tom Hodson - {{ page.title }}</title>
|
|
<meta name="description" content="Tom Hodson's personal site.">
|
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
<script src="/assets/js/index.js"></script>
|
|
|
|
<script>
|
|
MathJax = {
|
|
tex: {
|
|
inlineMath: [['$', '$'], ['\\(', '\\)']]
|
|
},
|
|
svg: {
|
|
fontCache: 'global'
|
|
}
|
|
};
|
|
</script>
|
|
<script src="/assets/mathjax/tex-mml-svg.js" id="MathJax-script" async></script>
|
|
|
|
<!-- RSS feed -->
|
|
{% feed_meta %}
|
|
</head>
|
|
<body>
|
|
{% include header.html %}
|
|
<main>
|
|
{{ content }}
|
|
</main>
|
|
</body>
|
|
</html> |