Source code for https://nixnet.services
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
922 B
28 lines
922 B
--- |
|
layout: default |
|
--- |
|
{% include category/title.html %} |
|
|
|
<ul class="list-posts"> |
|
{% assign empty_category = true %} |
|
{% for post in site.posts %} |
|
{% if post.categories contains page.category %} |
|
<li class="post-teaser"> |
|
<a href="{{ post.url | prepend: site.baseurl }}"> |
|
<span class="post-teaser-title">{{ post.title }}</span> |
|
<span class="post-teaser-date">{{ post.date | date: "%d %B %Y" }}</span> |
|
</a> |
|
</li> |
|
{% assign empty_category = false %} |
|
{% endif %} |
|
{% endfor %} |
|
|
|
{% if empty_category %} |
|
<li class="empty-post-list"> |
|
<p>The first article to appear here is currently being written.<p> |
|
<p>In the meantime, please go <a href="/">home</a> to see a list of completed posts.</p> |
|
</li> |
|
{% endif %} |
|
</ul> |
|
|
|
{% include page/explore.html %}
|
|
|