bible_documentations/_layouts/home.html

19 lines
407 B
HTML
Raw Normal View History

2020-07-02 11:42:34 +02:00
---
layout: default
---
<!-- display page content -->
{{ content }}
<!-- display all posts with hers link -->
{%- if site.posts.size > 0 -%}
<ul>
{%- for post in site.posts -%}
<li>
{%- assign date_format = "%Y-%m-%d" -%}
[ {{ post.date | date: date_format }} ] <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
</li>
{%- endfor -%}
</ul>
{%- endif -%}