-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.html
33 lines (29 loc) · 925 Bytes
/
news.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
layout: page
title: News Archive
short_title: News
---
<p class="lead">
Find out what's happening in the community!
</p>
<p>
Smaller announcements are made on <a href="/discord">the Discord server</a>, in the #announcements channel.
</p>
<hr>
{%- if site.posts.size > 0 -%}
{%- for post in site.posts -%}
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
<h3>
<a class="post-link" href="{{ post.url | relative_url }}">
{{ post.title | escape }}
</a>
</h3>
<p class="post-details">
<span class="post-meta">{{ post.date | date: "%e %b %Y" | strip }}:</span>
{{ post.excerpt | strip_html}}
</p>
<p class="post-details"><a class="action" href="{{ post.url | relative_url }}">Read more</a></p>
<hr>
{%- endfor -%}
<p><a href="{{ "/feed.xml" | relative_url }}">Subscribe via RSS feed</a></p>
{%- endif -%}