You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
598 B
HTML
22 lines
598 B
HTML
---
|
|
layout: default
|
|
title: News and Blog
|
|
---
|
|
<ul class="news list-unstyled">
|
|
{% for post in site.posts %}
|
|
{% if post.shortnews %}
|
|
<li class="shortnews">
|
|
<span class="date">{{ post.date | date_to_long_string }}</span>
|
|
{{ post.content }}
|
|
</li>
|
|
{% else %}
|
|
<li class="bloglink">
|
|
<span class="date">{{ post.date | date_to_long_string }}</span>
|
|
<a href="{{ post.url }}">» {{ post.title }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<p><a href="{{ site.base }}/oldnews.html">See archived news posts.</a></p>
|