2025-11-09 12:58:41 +01:00
|
|
|
---
|
2026-04-03 12:35:36 +02:00
|
|
|
permalink: "{{ hippie.permalink }}"
|
2025-11-09 12:58:41 +01:00
|
|
|
title: Index
|
|
|
|
|
---
|
|
|
|
|
{% assign pageId = page.fileSlug -%}
|
2026-02-21 12:58:31 +01:00
|
|
|
{% assign pageClass = 'h_full_view' -%}
|
|
|
|
|
{% layout 'hippie/full.liquid' %}
|
2025-11-09 12:58:41 +01:00
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
|
<div class="wrap">
|
|
|
|
|
<div class="hello">
|
|
|
|
|
<h2>This is {{ hippie.brand | upcase }}</h2>
|
|
|
|
|
<p>You can start using it by replacing this file with your own index page.</p>
|
|
|
|
|
<p>To do this you need to create a file
|
|
|
|
|
<code>/index.njk</code>
|
|
|
|
|
inside the
|
|
|
|
|
<i>source/screens</i>
|
|
|
|
|
folder. You can also create a
|
|
|
|
|
<code>data.json</code>
|
|
|
|
|
file inside the
|
|
|
|
|
<i>source/templates</i>
|
|
|
|
|
folder as a data source for your nunjucks files.</p>
|
|
|
|
|
<p>For a very basic start you can make a copy of the demo page
|
|
|
|
|
<code>blank.njk</code>. You can find it at
|
|
|
|
|
<i>/source/screens/demo</i>.</p>
|
|
|
|
|
<p>The
|
|
|
|
|
<i>source/demo</i>
|
|
|
|
|
folder contains an overview of all HTML elements and also examples for CSS style combinations and even whole
|
|
|
|
|
page layouts.<br/>Follow the white rabbit.</p>
|
|
|
|
|
<div class="pos_rel">
|
|
|
|
|
<pre class="txt_tiny txt_white pos_abs pin_down pin_right"> ()()<br> (..)<br>c(")(")</pre>
|
|
|
|
|
<h3>Overview</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<nav>
|
2026-03-08 14:54:41 +01:00
|
|
|
<ul class="block link">
|
2026-03-10 20:36:54 +01:00
|
|
|
{% assign indexByOrder = collections.demoIndex | sort: 'data.order' %}
|
|
|
|
|
{% for link in indexByOrder %}
|
2025-11-09 12:58:41 +01:00
|
|
|
<li>
|
|
|
|
|
<a href="{{ link.page.url }}">{{ link.data.title }}</a>
|
|
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
</nav>
|
2026-03-08 14:42:16 +01:00
|
|
|
<div class="responsive">
|
|
|
|
|
<section>
|
|
|
|
|
<h3>Page</h3>
|
2026-03-08 14:54:41 +01:00
|
|
|
<ul class="block link">
|
2026-03-08 14:42:16 +01:00
|
|
|
{% assign pagesByTitle = collections.demoPage | sort: 'data.title' %}
|
|
|
|
|
{% for link in pagesByTitle %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ link.page.url }}">{{ link.data.title }}</a>
|
|
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
</section>
|
|
|
|
|
<section>
|
|
|
|
|
<h3>Example</h3>
|
2026-03-08 14:54:41 +01:00
|
|
|
<ul class="block link">
|
2026-03-10 20:36:54 +01:00
|
|
|
{% assign examplesByTitle = collections.demoExample | sort: 'data.title' %}
|
|
|
|
|
{% for link in examplesByTitle %}
|
2026-03-08 14:42:16 +01:00
|
|
|
<li>
|
|
|
|
|
<a href="{{ link.page.url }}">{{ link.data.title }}</a>
|
|
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
</section>
|
|
|
|
|
</div>
|
2025-11-09 12:58:41 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|