2014-07-12 21:22:47 +02:00
|
|
|
|
2015-08-10 00:48:31 +02:00
|
|
|
<aside class="featured">
|
2015-11-20 18:13:34 +01:00
|
|
|
<div class="grid grid--fit grid-medium--gutters">
|
2015-08-10 00:48:31 +02:00
|
|
|
{% for post in site.posts %}
|
|
|
|
{% if post.featured %}
|
|
|
|
<article class="grid__col">
|
2015-09-26 22:47:34 +02:00
|
|
|
<a class="hentry__teaser featured-link" href="{{ post.url }}" title="{{ post.title }}">
|
2015-08-10 00:48:31 +02:00
|
|
|
{% picture featured {{ post.image }} %}
|
|
|
|
<h1 class="featured-title">{{ post.title | titlecase }}</h1>
|
|
|
|
</a>
|
|
|
|
</article>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</aside>
|