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.
24 lines
690 B
HTML
24 lines
690 B
HTML
|
|
{% assign item = include.item %}
|
|
{% if item.icon %}
|
|
{% assign icon = item.icon %}
|
|
{% assign class = "shortnews" %}
|
|
{% else %}
|
|
{% assign icon = "newspaper-o" %}
|
|
{% endif %}
|
|
|
|
<li class="{{ class }}">
|
|
<span class="fa fa-fw fa-{{ icon }}"></span>
|
|
<span class="date">{{ post.date | date: '%B %d, %Y' }}</span>
|
|
<div>
|
|
{% if post.shortnews %}
|
|
{{ post.content | remove: '<p>' | remove: '</p>' }}
|
|
{% else %}
|
|
<h5> <a href="{{ site.base }}{{ post.url }}"> {{ post.title }} </a> </h5>
|
|
{{ post.excerpt | remove: '<p>' | remove: '</p>' }}
|
|
<br>
|
|
<a href="{{ site.base }}{{ post.url }}"> Read more »</a>
|
|
{% endif %}
|
|
</div>
|
|
</li>
|