From bbd1523c2b4456ec25f98c5b3a7550ad8df1113d Mon Sep 17 00:00:00 2001 From: uvok cheetah Date: Mon, 30 Oct 2023 17:02:03 +0100 Subject: Make news an include --- _includes/news.html | 6 ++++++ _layouts/postlist.html | 7 +------ 2 files changed, 7 insertions(+), 6 deletions(-) create mode 100644 _includes/news.html diff --git a/_includes/news.html b/_includes/news.html new file mode 100644 index 0000000..74d3971 --- /dev/null +++ b/_includes/news.html @@ -0,0 +1,6 @@ +{% for item in site.data.news %} +
+ + {{ item.content }} +
+{% endfor %} diff --git a/_layouts/postlist.html b/_layouts/postlist.html index f555146..f50748e 100644 --- a/_layouts/postlist.html +++ b/_layouts/postlist.html @@ -3,12 +3,7 @@ layout: default ---
- {% for item in site.data.news %} -
- - {{ item.content }} -
- {% endfor %} + {% include news.html %} {%- if page.title -%}

{{ page.title }}

-- cgit v1.2.3