mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-13 08:07:11 +02:00
27 lines
793 B
Plaintext
27 lines
793 B
Plaintext
---
|
|
layout: base.njk
|
|
title: KST4Contest News
|
|
description: News, release updates and development notes for KST4Contest.
|
|
eleventyExcludeFromCollections: true
|
|
---
|
|
|
|
<section class="hero">
|
|
<p class="badge">News</p>
|
|
<h1>Development updates and release notes.</h1>
|
|
<p class="lead">
|
|
Updates about KST4Contest releases, website improvements and contest workflow development.
|
|
</p>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="grid">
|
|
{% for post in collections.news | reverse %}
|
|
<article class="card">
|
|
<p class="eyebrow">{{ post.date | readableDate }}</p>
|
|
<h3><a href="{{ post.url }}">{{ post.data.title }}</a></h3>
|
|
<p>{{ post.data.summary }}</p>
|
|
<a href="{{ post.url }}">Read more →</a>
|
|
</article>
|
|
{% endfor %}
|
|
</div>
|
|
</section> |