1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-30 21:52:05 +02:00
blog/_src/_includes/sticky.html

13 lines
414 B
HTML

<aside class="row sticky">
{% for post in site.posts %}
{% if post.sticky %}
<article class="col2">
<a class="sticky-link" href="{{ post.url }}" title="{{ post.title }}">
{% picture sticky {{ post.image }} %}
<h1 class="sticky-title">{{ post.title | titlecase }}</h1>
</a>
</article>
{% endif %}
{% endfor %}
</aside>