24 lines
No EOL
411 B
Text
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 %} |