hippie/source/screens/demo/examples/ui/index.njk
sthag d9f7ae1ff9 feat: Change frame screens
- Move page title to template
- Remove redundant title blocks
- Base frame pages on correct template
- Base ui index on default template
2025-10-25 09:34:30 +02:00

25 lines
No EOL
478 B
Text

---
title: UI
tags:
- demoExample
- index
---
{% extends "demo/_default.njk" %}
{% import "hippie/macros/_placeholder.njk" as ph %}
{% block title %}{{ title }}{% endblock %}
{% block body %}
<div class="sec_main_center">
<nav role="doc-toc">
<h1>{{ title }}</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 %}