2026-04-23 20:56:04 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
{% if pageId %}
|
|
|
|
|
{%- capture idAttr %} id="{{ pageId }}"{% endcapture -%}
|
|
|
|
|
{% endif -%}
|
|
|
|
|
{% if pageClass %}
|
|
|
|
|
{%- capture classAttr %} class="{{ pageClass }}"{% endcapture -%}
|
|
|
|
|
{% endif -%}
|
|
|
|
|
{% if bodyClass %}
|
|
|
|
|
{%- capture bodyClassAttr %} class="{{ bodyClass }}"{% endcapture -%}
|
|
|
|
|
{% endif -%}
|
|
|
|
|
<html{{ idAttr }}{{ classAttr }} lang="de">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
{% block head %}
|
|
|
|
|
<title>
|
|
|
|
|
{{- hippie.titlePrefix -}}
|
|
|
|
|
{% block title %}{{ title }}{% endblock -%}
|
|
|
|
|
{{ hippie.titlePostfix -}}
|
|
|
|
|
</title>
|
|
|
|
|
{% block meta -%}
|
2026-04-23 21:33:32 +02:00
|
|
|
{% render 'hippie-view/partials/meta.liquid', author: 'Interaktionsweise', desc: 'Hippie interweaves preeminent personal interface elements' %}
|
2026-04-23 20:56:04 +02:00
|
|
|
{% comment %}<base href="/">{% endcomment %}
|
|
|
|
|
{% endblock -%}
|
2026-04-23 21:33:32 +02:00
|
|
|
{% render 'hippie-view/partials/script-log.liquid' %}
|
|
|
|
|
{% render 'hippie-view/partials/log-setup', hippie: hippie, state: true -%}
|
|
|
|
|
{% render 'hippie-view/partials/log-start' -%}
|
2026-04-23 20:56:04 +02:00
|
|
|
{% block links -%}
|
2026-04-23 21:33:32 +02:00
|
|
|
{% render 'hippie-view/partials/links.liquid' %}
|
2026-04-23 20:56:04 +02:00
|
|
|
<link rel="stylesheet" media="all" href="/css/demo.css" type="text/css"/>
|
|
|
|
|
{% endblock -%}
|
2026-04-23 21:33:32 +02:00
|
|
|
{% render 'hippie-view/partials/log-log' with 'HEAD end :: Links parsed, starting to load.' as msg -%}
|
2026-04-23 20:56:04 +02:00
|
|
|
{% endblock -%}
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body{{ bodyClassAttr }}>
|
2026-04-23 21:33:32 +02:00
|
|
|
{% render 'hippie-view/partials/log-log' with 'BODY start' as msg -%}
|
2026-04-23 20:56:04 +02:00
|
|
|
{%- block body %}{% endblock -%}
|
2026-04-23 21:33:32 +02:00
|
|
|
{% render 'hippie-view/partials/log-log' with 'BODY :: Loading script assets...' as msg -%}
|
2026-04-23 20:56:04 +02:00
|
|
|
{%- block assets %}{% endblock -%}
|
2026-04-23 21:33:32 +02:00
|
|
|
{% render 'hippie-view/partials/log-assets', state: true -%}
|
|
|
|
|
{% render 'hippie-view/partials/log-log', msg: 'BODY :: Assets loaded, running page specific script...', arg: true -%}
|
2026-04-23 20:56:04 +02:00
|
|
|
<script>
|
|
|
|
|
// {{ title }} script using full template
|
|
|
|
|
</script>
|
|
|
|
|
{%- block script %}{% endblock -%}
|
2026-04-23 21:33:32 +02:00
|
|
|
{% render 'hippie-view/partials/log-log' with 'BODY end :: Page script might still be loading.' as msg -%}
|
|
|
|
|
{% render 'hippie-view/partials/log-log' with 'Application ready... or is it?' as msg -%}
|
2026-04-23 20:56:04 +02:00
|
|
|
</body>
|
|
|
|
|
</html>
|