This commit is contained in:
ge
2022-10-21 22:29:23 +03:00
parent 423468a50b
commit a3c6d296ab
12 changed files with 753 additions and 50 deletions

View File

@ -15,13 +15,6 @@
</head>
<body>
<header>
<p>
{% if page.template == 'index.jinja2' %}
{{ site.title }}
{% else %}
<a href="/">{{ site.title }}</a> / {{ page.title }}</p>
{% endif %}
</p>
<p>
{% for link in site.links %}
<a href="{{ link.url }}" target="{{ link.target }}">

View File

@ -4,10 +4,13 @@
<ul id="posts">
{% for post in aggr.posts %}
<li>
<a href="{{ post.path }}">{{ post.title }}</a>
<span class="meta">{{ post.date }}</span>
<a href="{{ post.path }}">{{ post.title }}</a><br>
<span class="meta">{{ post.date }}</span>
</li>
{% endfor %}
</ul>
</section>
<section>
{{ html | safe }}
</section>
{% endblock %}