feat: complete swap over to a far simpler static, zola site
This commit is contained in:
parent
227f560c0d
commit
d76cb9cf77
62 changed files with 717 additions and 5028 deletions
12
templates/blog.html
Normal file
12
templates/blog.html
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}{{ section.title }} — {{ config.title }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h1>{{ section.title }}</h1>
|
||||
<ul>
|
||||
{% for post in section.pages %}
|
||||
<li>{{ post.date }} — <a href="{{ post.permalink }}">{{ post.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue