gnusocial.rocks/v2-src/news.html

18 行
358 B
HTML

---
layout: default
---
<div class="md">
{% for category in site.categories %}
<h1>{{ category[0] }}</h1>
<ul>
{% for post in category[1] %}
<h3>
<li>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</li>
</h3>
{% endfor %}
</ul>
{% endfor %}
</div>