]> jfr.im git - irc/anope/website.git/blame - _layouts/news.html
Convert from XHTML strict to HTML.
[irc/anope/website.git] / _layouts / news.html
CommitLineData
35a2cd8a
SP
1---
2layout: default
3---
4<div class="block">
5 <h3>News Overview</h3>
6 <p>Currently showing all news items posted in <strong>{{ page.category }}</strong>. News items are available for these years:</p>
7 <ul>
8 {% for category in site.categories reversed %}
9 <li><a href="/news/{{ category[0] | slugify }}">{{ category[0] }}</a></li>
10 {% endfor %}
11 </ul>
12</div>
3426edd5 13<hr>
35a2cd8a
SP
14{% for post in page.posts %}
15<div class="block">
16 <h3>{{ post.title }}</h3>
17 {{ post.excerpt }}
18 <h4>Posted on {{ post.date | date_to_string }} by {{ post.author }} (<a href="{{ post.url }}">Read More...</a>)</h4>
19</div>
20{% endfor %}