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

13
templates/index.html Normal file
View File

@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block title %}{{ section.title }}{% endblock title %}
{% block content %}
{{ section.content | safe }}
<ul>
{% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">[{{ page.date }}] {{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}