This repository has been archived on 2023-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
gameserver/website/news.html

20 lines
560 B
HTML

---
layout: default
nav_pill: news
---
<h1>News</h1>
{% for post in site.posts %}
<h2>{{ post.title }}</h2>
<p><strong>{{ post.date | date_to_string }} by {{ post.author }}</strong></p>
{% if forloop.first %}
{{ post.content }}
<p><a href="{{ post.url }}">Permalink</a></p>
{% else %}
{{ post.excerpt }}
<p><a href="{{ post.url }}">Read more...</a></p>
{% endif %}
{% else %}
<p>No news</p>
{% endfor %}
</ul>