ACE3/docs/news.md
Jo David 9641fe490b
Documentation - Improve svg handling (#9575)
* fix tabs in xm157

* use rollup, remove grunt, fix scss build

* add svg bundler. rework to use svg element instead of images
2023-10-24 14:04:58 +02:00

47 lines
1.3 KiB
Markdown

---
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 button--icon small" href="{{ post.url }}">
<span>Read more</span>
<i class="icon icon--white" aria-hidden="true">
<svg>
<use href="/dist/icons.svg#chevronright" />
</svg>
</i>
</a>
</footer>
</article>
<hr/>
</li>
{% endfor %}
</ul>
</div>
</div>