Jekyll-ify a bit more

This commit is contained in:
2025-09-01 02:18:43 -04:00
parent 9140e44985
commit 054ebec020
12 changed files with 343 additions and 33 deletions
+23 -1
View File
@@ -1,3 +1,5 @@
---
---
<!DOCTYPE html>
<html lang="en">
<head>
@@ -6,10 +8,30 @@
<title>{% if page.title %}{{ page.title }} - {{ site.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//stats.resist.is/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '2']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body>
<div class="main-container">
{{ content }}
{% include header.html %}
{{ content }}
</div>
</body>
</html>