Implement Jekyll

This commit is contained in:
Matthew Grove
2019-01-25 18:03:10 +00:00
parent a81a51264c
commit 9557a47721
60 changed files with 5296 additions and 192 deletions

24
_layouts/article.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<link href="/css/article-page.css" rel="stylesheet">
<body>
<!-- cookie notice is included automatically -->
{% include cookie-notice.html %}
<!-- content of navbar is included via jQuery -->
{% include navbar.html %}
<div class="mdc-drawer-app-content">
{% include top-app-bar.html %}
<main class="main-content" id="main-content">
<div class="mdc-top-app-bar--short-fixed-adjust">
<h2 class="mdc-typography--headline2">{{ page.title }}</h2>
{{ content }}
</div>
</main>
{% include footer.html %}
</div>
</body>
</html>