hippie/source/screens/demo/examples/game/index.liquid
sthag 2387e08ad0 feat: Combine start and tile screens
- Combine start and tile content to start screen
- Remove tile screen
- Remove new css module
- Integrate style to start module
2026-03-21 17:49:48 +01:00

22 lines
No EOL
372 B
Text

---
title: Game
tags:
- demoExample
- index
---
{% layout 'hippie/simple.liquid' %}
{% block body %}
<div class="sec_main_center">
<nav role="doc-toc">
<h1>{{ title }}</h1>
<ul class="link">
{%- for game in collections.game -%}
<li>
<a href="{{ game.page.url }}">{{ game.data.title }}</a>
</li>
{%- endfor -%}
</ul>
</nav>
</div>
{% endblock %}