ACE3/docs/news.md

42 lines
1.1 KiB
Markdown
Raw Normal View History

---
title: News
layout: default
group: mainNav
order: 2
short: posts
parent:
---
<div class="row">
<div class="large-12 columns">
<h1>ACE Posts</h1>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<ul class="article-list">
{% for post in site.posts %}
<li>
<article>
<header>
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<div class="meta">
<time>{{ post.date | date: "%Y-%m-%d"}}</time>
</div>
</header>
{{ post.excerpt }}
<footer>
<a class="button small" href="{{ post.url }}">
Read more&nbsp;<img class="icon" src="{{ site.baseurl }}/img/icons/chevronrightwhite.svg" alt="Back" width="16" height="16" aria-hidden="true">
</a>
</footer>
</article>
<hr/>
</li>
{% endfor %}
</ul>
</div>
</div>