1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-11 23:55:16 +01:00
blog/_src/_includes/featured.html

13 lines
425 B
HTML
Raw Normal View History

2014-07-12 21:22:47 +02:00
2015-08-09 21:50:06 +02:00
<aside class="grid featured">
2014-07-12 21:22:47 +02:00
{% 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 | titlecase }}</h1>
</a>
</article>
{% endif %}
{% endfor %}
</aside>