blob: 7cecc847bebdd3a7550fc00cdd2c11ff32b3c84d [file] [log] [blame]
---
layout: default
title: "News"
description: "showtags"
tags: [] #list of tags that you want to show in description of blog
---
<ul class="news list-unstyled">
{% for post in site.categories.news %}
{% if post.shortnews %}
<li class="shortnews">
<span class="date">{{ post.date | date: "%B %-d, %Y" }}</span>
{{ post.content }}
</li>
{% else %}
<li class="bloglink">
<span class="date">{{ post.date | date: "%B %-d, %Y" }}</span>
<a href="{{ post.url }}">&raquo; {{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>