jekyll -> zola

This commit is contained in:
2023-01-06 03:02:54 +00:00
parent f5e9c84fdc
commit 6f373f7ea9
74 changed files with 516 additions and 1473 deletions

17
templates/article.html Normal file
View File

@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block extra_head %}
<link rel="stylesheet" href="/style/article.css">
{% endblock %}
{% block content %}
<div class="article">
<h1><a href="{{ page.permalink }}">{{ page.title }}</a><span class="home-link">[ <a href="/">homepage</a> ]</span></h1>
{{ page.content | safe }}
<hr>
<p><a href="mailto:jackbondpreston@outlook.com">email me</a> to have a conversation</p>
</div>
{% endblock content %}