hippie/source/screens/demo/examples/ui/index.liquid
sthag 2d3c049d40 feat: Remove pageBase from liquid templates
- Remove pageBase global from all liquid templates
- Change " to ' for all liquid tags
2026-02-21 12:58:31 +01:00

24 lines
No EOL
411 B
Text

---
title: UI
tags:
- demoExample
- index
---
{% layout 'hippie/simple.liquid' %}
{% 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 %}