31 lines
791 B
Text
31 lines
791 B
Text
---
|
|
layout: base
|
|
---
|
|
|
|
<header class="section spot-color-secondary">
|
|
<div class="section__inner region">
|
|
<div class="wrapper flow">
|
|
<section class="prose text-center">
|
|
<h1 class="fade-in">{{ title }}</h1>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
{% include 'svg/divider-edgy.svg' %}
|
|
</header>
|
|
|
|
<article class="wrapper region">
|
|
<ul class="grid mt-l-xl" role="list" data-rows="masonry" data-layout="50-50">
|
|
{% set postslist = collections.posts %} {% for post in postslist %}
|
|
|
|
<li class="card flow overflow-hidden">
|
|
<h2>
|
|
<a href="{{ post.url | url }}">{{ post.data.title }}</a>
|
|
</h2>
|
|
{% set definedDate = post.date %} {% include "partials/date.njk" %}
|
|
<p>{{ post.data.description }}</p>
|
|
</li>
|
|
|
|
{% endfor %}
|
|
</ul>
|
|
</article>
|