2025-10-28 19:51:59 +01:00
|
|
|
---
|
|
|
|
|
title: Start
|
|
|
|
|
tags:
|
|
|
|
|
- ui
|
|
|
|
|
---
|
|
|
|
|
{% assign bodyClass = "body_new" -%}
|
|
|
|
|
{% layout "hippie/app.liquid" %}
|
|
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
|
{% render 'hippie/partials/header-status', hippie: hippie, links: start %}
|
|
|
|
|
<header class="area menu io">
|
|
|
|
|
<nav>
|
|
|
|
|
<ul>
|
|
|
|
|
<li>
|
|
|
|
|
<a href="" class="a_button">Func 1</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<a href="" class="a_button">Func 2</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</nav>
|
|
|
|
|
</header>
|
|
|
|
|
<div class="area grid">
|
|
|
|
|
<div class="item">1</div>
|
|
|
|
|
<div class="item">2</div>
|
|
|
|
|
<div class="item">3</div>
|
|
|
|
|
<div class="item">4</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{%- block script %}
|
|
|
|
|
{{ block.super -}}
|
|
|
|
|
<script>
|
2025-11-02 10:20:51 +01:00
|
|
|
const timeElement = document.getElementById('time');
|
|
|
|
|
const timeDisplay = new TimeDisplay(timeElement);
|
2025-10-28 19:51:59 +01:00
|
|
|
|
|
|
|
|
ongoing();
|
|
|
|
|
|
|
|
|
|
document.addEventListener('mousemove', (event) => {
|
|
|
|
|
document
|
|
|
|
|
.getElementById('log')
|
|
|
|
|
.textContent = "X: " + event.pageX + ", Y: " + event.pageY;
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
{% endblock %}
|