disaster-recovery-website/_vendor/jekyll-theme-console/_layouts/home.html

18 lines
490 B
HTML
Raw Permalink Normal View History

2024-06-26 15:57:15 +00:00
---
layout: default
---
{{ content }}
{% assign contentwonl = content | strip_newlines %} {% unless contentwonl == "" %} <br /> {% endunless %} <!-- add line break if there is any content -->
{%- 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 -%}