2026-03-10 22:33:00 +01:00
|
|
|
---
|
|
|
|
|
title: Blog
|
|
|
|
|
tags:
|
|
|
|
|
- demoExample
|
|
|
|
|
---
|
2026-04-23 21:45:14 +02:00
|
|
|
{% layout 'hippie-view/simple.liquid' %}
|
2026-03-10 22:33:00 +01:00
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
|
<div class="sec_main_center">
|
|
|
|
|
<header class="header_txt">
|
|
|
|
|
<h1>Blog</h1>
|
|
|
|
|
</header>
|
|
|
|
|
<nav role="doc-toc">
|
|
|
|
|
<h2>Inhaltsverzeichnis</h2>
|
|
|
|
|
<ul>
|
|
|
|
|
{%- for blog in collections.blog -%}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ blog.page.url }}">{{ blog.data.title }}</a>
|
|
|
|
|
</li>
|
|
|
|
|
{%- endfor -%}
|
|
|
|
|
</ul>
|
|
|
|
|
</nav>
|
|
|
|
|
<hr class="double dotted">
|
|
|
|
|
{%- for post in collections.article -%}
|
|
|
|
|
<article>
|
|
|
|
|
{{ post.content }}
|
|
|
|
|
</article>
|
|
|
|
|
{%- endfor -%}
|
|
|
|
|
<hr/>
|
|
|
|
|
<address>{% text hippie.placeholders.name %}</address>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|