mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-12 08:05:18 +01:00
13 lines
414 B
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> |