mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-12 08:05:18 +01:00
13 lines
413 B
HTML
13 lines
413 B
HTML
|
|
||
|
<aside class="row featured">
|
||
|
{% for post in site.posts %}
|
||
|
{% if post.featured %}
|
||
|
<article class="col2">
|
||
|
<a class="featured-link" href="{{ post.url }}" title="{{ post.title }}">
|
||
|
{% picture featured {{ post.image }} %}
|
||
|
<h1 class="featured-title">{{ post.title }}</h1>
|
||
|
</a>
|
||
|
</article>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
</aside>
|