2018-08-17 17:18:40 +00:00
|
|
|
<ul class="pinned-posts">
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- for posts in site.posts -%}
|
|
|
|
{%- for post in site.pinpost -%}
|
|
|
|
{%- if posts.title == post -%}
|
2018-08-17 17:18:40 +00:00
|
|
|
<li style="margin-bottom: 1em">
|
|
|
|
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
|
|
|
|
<h3 style="margin:0">
|
|
|
|
<a class="post-link" href="{{ posts.url | relative_url }}">
|
|
|
|
{{ posts.title | escape }}
|
|
|
|
</a>
|
|
|
|
</h3>
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- include post_meta.html page=posts include_link=true -%}
|
2018-08-17 17:18:40 +00:00
|
|
|
</li>
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- endif -%}
|
|
|
|
{%- endfor -%}
|
|
|
|
{%- endfor -%}
|
2018-08-17 17:18:40 +00:00
|
|
|
</ul>
|
|
|
|
|