hippie/source/screens/demo/examples/ui/index.njk
2025-06-20 17:00:07 +02:00

38 lines
No EOL
670 B
Text

---
title: UI
tags:
- demoExample
- index
---
{% set pageClass = "html_ui" %}
{% extends "demo/_app.njk" %}
{% import "hippie/macros/_placeholder.njk" as ph %}
{% block title %}
{{ title }}
{% endblock %}
{% block links %}
<link href="{{ pageBase }}css/ui.css" media="all" rel="stylesheet"/>
{% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{% block body %}
<div class="sec_main_center">
<nav role="doc-toc">
<h1>Inhaltsverzeichnis</h1>
<ul class="list_link">
{%- for ui in collections.ui -%}
<li>
<a href="{{ ui.page.url }}">{{ ui.data.title }}</a>
</li>
{%- endfor -%}
</ul>
</nav>
</div>
{% endblock %}