mirror of
https://github.com/kittywitch/dork.dev.git
synced 2026-02-09 23:29:17 -08:00
18 lines
372 B
HTML
18 lines
372 B
HTML
{% extends "base-section-title.html" %}
|
|
|
|
{% block content %}
|
|
<section id="blogposts">
|
|
<h2>Blogposts</h2>
|
|
<ul>
|
|
{% for post in section.pages %}
|
|
<li>
|
|
<article>
|
|
<a href="{{post.permalink | safe}}"><h3>{{ post.title }}</h3></a>
|
|
<p>Posted: <time>{{ post.date }}</time></p>
|
|
</article>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
{% endblock content %}
|
|
|