mirror of https://github.com/nate2014jatc/AGSTATUS
This is a mirror of https://github.com/nate2014jatc/AGSTATUS
https://status.astragroup.info
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
676 B
30 lines
676 B
3 years ago
|
---
|
||
|
layout: simple
|
||
|
---
|
||
|
<center><p class="updated">Site Last Updated: {{ site.time | date: "%m/%d/%Y %H:%M" }}</p></center>
|
||
|
<br>
|
||
|
<h1>Latest:</h1>
|
||
|
<ul>
|
||
|
{% for post in site.posts limit:1 %}
|
||
|
<a href="{{ post.url}}">
|
||
|
<h2>{{ post.title }}</h2>
|
||
|
<p>{{ post.date | date: "%m/%d/%Y %H:%M"}}</p>
|
||
|
<p>{{ page.excerpt | truncate_words: 5 }}</p>
|
||
|
</a>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
<hr>
|
||
|
<hr>
|
||
|
<hr>
|
||
|
<h1>Earlier:</h1>
|
||
|
<ul>
|
||
|
{% for post in site.posts offset:1 limit:5 %}
|
||
|
<a href="{{ post.url }}">
|
||
|
<h2>{{ post.title }}</h2>
|
||
|
<p>{{ post.date | date: "%m/%d/%Y %H:%M"}}</p>
|
||
|
<p>{{ page.excerpt | truncate_words: 5 }}</p>
|
||
|
</a>
|
||
|
<hr>
|
||
|
{% endfor %}
|
||
|
</ul>
|