blob: e1fc80bcb72f452c4c11d888132008fd6c4b578a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<div class="news">
<h2>news</h2>
{% if site.news %}
<div class="table-responsive">
<table class="table table-sm table-borderless">
{% assign news = site.news | reverse %}
{% for item in news limit: site.news_limit %}
<tr>
<th scope="row">{{ item.date | date: "%b %-d, %Y" }}</th>
<td>
{% if item.inline %}
{{ item.content | remove: '<p>' | remove: '</p>' | emojify }}
{% else %}
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.title }}</a>
{% endif %}
</td>
</tr>
{% endfor %}
</table>
</div>
{% else %}
<p>No news so far...</p>
{% endif %}
</div>
|