diff --git a/app.liquid b/app.liquid new file mode 100644 index 0000000..87db0cb --- /dev/null +++ b/app.liquid @@ -0,0 +1,41 @@ +{% assign pageId = page.fileSlug -%} +{% assign pageClass = 'html_ui' -%} +{% layout 'hippie/default.liquid' %} + +{% block title %}{{ title }}{% endblock %} + +{% block links %} +{{ block.super -}} + + +{% endblock %} + +{% block assets %} + + + + +{% endblock %} + +{% block script %} + +{% endblock %} diff --git a/default.liquid b/default.liquid new file mode 100644 index 0000000..4ff5f5a --- /dev/null +++ b/default.liquid @@ -0,0 +1,39 @@ + +{% if pageId %} +{%- capture idAttr %} id="{{ pageId }}"{% endcapture -%} +{% endif -%} +{% if pageClass %} + {%- capture classAttr %} class="{{ pageClass }}"{% endcapture -%} +{% endif -%} +{% if bodyClass %} + {%- capture bodyClassAttr %} class="{{ bodyClass }}"{% endcapture -%} +{% endif -%} + + + + {% block head %} + + {{- hippie.titlePrefix -}} + {% block title %}{% endblock -%} + {{ hippie.titlePostfix -}} + + + {% block meta -%} + {% render 'hippie/partials/meta.liquid' %} + {% endblock -%} + {% block links -%} + {% render 'hippie/partials/links.liquid' %} + {% endblock -%} + {% block style -%}{% endblock -%} + {% endblock -%} + + + +{%- block body %}{% endblock -%} +{%- block assets %}{% endblock -%} + +{%- block script %}{% endblock -%} + + \ No newline at end of file diff --git a/full.liquid b/full.liquid new file mode 100644 index 0000000..dbbe4ae --- /dev/null +++ b/full.liquid @@ -0,0 +1,49 @@ + +{% if pageId %} +{%- capture idAttr %} id="{{ pageId }}"{% endcapture -%} +{% endif -%} +{% if pageClass %} + {%- capture classAttr %} class="{{ pageClass }}"{% endcapture -%} +{% endif -%} +{% if bodyClass %} + {%- capture bodyClassAttr %} class="{{ bodyClass }}"{% endcapture -%} +{% endif -%} + + + + {% block head %} + + {{- hippie.titlePrefix -}} + {% block title %}{{ title }}{% endblock -%} + {{ hippie.titlePostfix -}} + + {% block meta -%} + {% render 'hippie/partials/meta.liquid', author: 'Interaktionsweise', desc: 'Hippie interweaves preeminent personal interface elements' %} + {% comment %}{% endcomment %} + {% endblock -%} + {% render 'hippie/partials/script-log.liquid' %} + {% render 'hippie/partials/log-setup', hippie: hippie, state: true -%} + {% render 'hippie/partials/log-start' -%} + {% block links -%} + {% render 'hippie/partials/links.liquid' %} + + {% endblock -%} + {% render 'hippie/partials/log-log' with 'HEAD end :: Links parsed, starting to load.' as msg -%} + {% endblock -%} + + + +{% render 'hippie/partials/log-log' with 'BODY start' as msg -%} +{%- block body %}{% endblock -%} +{% render 'hippie/partials/log-log' with 'BODY :: Loading script assets...' as msg -%} +{%- block assets %}{% endblock -%} +{% render 'hippie/partials/log-assets', state: true -%} +{% render 'hippie/partials/log-log', msg: 'BODY :: Assets loaded, running page specific script...', arg: true -%} + +{%- block script %}{% endblock -%} +{% render 'hippie/partials/log-log' with 'BODY end :: Page script might still be loading.' as msg -%} +{% render 'hippie/partials/log-log' with 'Application ready... or is it?' as msg -%} + + \ No newline at end of file diff --git a/game.liquid b/game.liquid new file mode 100644 index 0000000..37c890b --- /dev/null +++ b/game.liquid @@ -0,0 +1,15 @@ +{% assign pageId = page.fileSlug -%} +{% layout 'hippie/default.liquid' %} + +{% block title %}{{ title }}{% endblock %} + +{% block links %} +{{ block.super -}} + +{% endblock %} + +{% block assets %} + + + +{% endblock %} diff --git a/page.liquid b/page.liquid new file mode 100644 index 0000000..5cf93c9 --- /dev/null +++ b/page.liquid @@ -0,0 +1,64 @@ +{% assign pageId = page.fileSlug -%} +{% layout 'hippie/full.liquid' %} + +{% block meta %} +{{ block.super -}} +{% comment %}{% endcomment %} +{% comment %}{% endcomment %} +{% endblock %} + +{% block links %} +{{ block.super -}} +{% if hippie.legacyMode %} + + + {% comment %}{% endcomment %} + {% comment %}{% endcomment %} +{% endif %} + +{% comment %}{% endcomment %} +{% comment %}{% endcomment %} +{% endblock %} + +{% block body %} +{{ block.super -}} +{% render 'hippie/partials/nav-page.liquid' %} +
+ {% render 'hippie/partials/header-page.liquid' %} + +
+ {% block main %}{% endblock %} +
+ + {% render 'hippie/partials/footer-page.liquid' %} +
+{% endblock %} + +{% block assets %} + + + + +{% endblock %} +{% block script %} + +{% endblock %} diff --git a/partials/footer-page.liquid b/partials/footer-page.liquid new file mode 100644 index 0000000..7aa500a --- /dev/null +++ b/partials/footer-page.liquid @@ -0,0 +1,3 @@ +
+
+
\ No newline at end of file diff --git a/partials/footer-pinned.liquid b/partials/footer-pinned.liquid new file mode 100644 index 0000000..5f4160a --- /dev/null +++ b/partials/footer-pinned.liquid @@ -0,0 +1,3 @@ +
+

Unten fixiert

+
diff --git a/partials/footer-status.liquid b/partials/footer-status.liquid new file mode 100644 index 0000000..b46ecf2 --- /dev/null +++ b/partials/footer-status.liquid @@ -0,0 +1,9 @@ +
+
Kontakt: + {{ email | default: 'admin@domain.tld' }} + · Server: + {{ app | default: 'Application' }}/{{ version | default: 'ver.s.ion' }} + ({{ system | default: 'System name' }}) · Domain: + {{ domain | default: 'domain.tld:port' }} +
+
\ No newline at end of file diff --git a/partials/frame-header.liquid b/partials/frame-header.liquid new file mode 100644 index 0000000..14d04bc --- /dev/null +++ b/partials/frame-header.liquid @@ -0,0 +1,20 @@ +
+ + +
\ No newline at end of file diff --git a/partials/frame-mode.liquid b/partials/frame-mode.liquid new file mode 100644 index 0000000..4e87985 --- /dev/null +++ b/partials/frame-mode.liquid @@ -0,0 +1,10 @@ +
+ + +
\ No newline at end of file diff --git a/partials/frame-status.liquid b/partials/frame-status.liquid new file mode 100644 index 0000000..98c94f9 --- /dev/null +++ b/partials/frame-status.liquid @@ -0,0 +1,11 @@ +
+ + +
\ No newline at end of file diff --git a/partials/game-menu.liquid b/partials/game-menu.liquid new file mode 100644 index 0000000..c59d802 --- /dev/null +++ b/partials/game-menu.liquid @@ -0,0 +1,15 @@ +
+ +
diff --git a/partials/gate-list.liquid b/partials/gate-list.liquid new file mode 100644 index 0000000..7ef18bd --- /dev/null +++ b/partials/gate-list.liquid @@ -0,0 +1,19 @@ + diff --git a/partials/gate-simple.liquid b/partials/gate-simple.liquid new file mode 100644 index 0000000..9d0b54e --- /dev/null +++ b/partials/gate-simple.liquid @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/partials/header-page.liquid b/partials/header-page.liquid new file mode 100644 index 0000000..a37637a --- /dev/null +++ b/partials/header-page.liquid @@ -0,0 +1,3 @@ +
+
+
\ No newline at end of file diff --git a/partials/header-status.liquid b/partials/header-status.liquid new file mode 100644 index 0000000..725e305 --- /dev/null +++ b/partials/header-status.liquid @@ -0,0 +1,21 @@ +
+

+ {{ hippie.brand | upcase }} +

+ +
+

{% render 'hippie/partials/status-coord', id: "log" %} + / + {% render 'hippie/partials/status-date', id: "date" %} + / + {% render 'hippie/partials/status-time', id: "time" %}

+
+
diff --git a/partials/links.liquid b/partials/links.liquid new file mode 100644 index 0000000..32d854d --- /dev/null +++ b/partials/links.liquid @@ -0,0 +1,3 @@ +{% comment %}{% endcomment %} + + diff --git a/partials/log-assets.liquid b/partials/log-assets.liquid new file mode 100644 index 0000000..a34b417 --- /dev/null +++ b/partials/log-assets.liquid @@ -0,0 +1,3 @@ + diff --git a/partials/log-log.liquid b/partials/log-log.liquid new file mode 100644 index 0000000..ba21f2a --- /dev/null +++ b/partials/log-log.liquid @@ -0,0 +1,3 @@ + diff --git a/partials/log-setup.liquid b/partials/log-setup.liquid new file mode 100644 index 0000000..04fd9b2 --- /dev/null +++ b/partials/log-setup.liquid @@ -0,0 +1,6 @@ +{% comment %}{% assign hippie.debugMode = state %}{% endcomment %} + diff --git a/partials/log-start.liquid b/partials/log-start.liquid new file mode 100644 index 0000000..e137e33 --- /dev/null +++ b/partials/log-start.liquid @@ -0,0 +1,4 @@ + diff --git a/partials/meta.liquid b/partials/meta.liquid new file mode 100644 index 0000000..a4b3cc2 --- /dev/null +++ b/partials/meta.liquid @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/partials/nav-page.liquid b/partials/nav-page.liquid new file mode 100644 index 0000000..cf52d72 --- /dev/null +++ b/partials/nav-page.liquid @@ -0,0 +1,33 @@ +
+ +
+{% comment %}
+ ? +
{% endcomment %} \ No newline at end of file diff --git a/partials/placeholder-flag.liquid b/partials/placeholder-flag.liquid new file mode 100644 index 0000000..0534104 --- /dev/null +++ b/partials/placeholder-flag.liquid @@ -0,0 +1,43 @@ +{% assign height = width | divided_by: 1.6 %} + +{% if type == 'svg' or type == '' %} + + {% comment %} + + + + + + + + + + + {% endcomment %} + {% if desc %} + {{ desc }} + {% endif %} + + + + + + + + + + +{% elsif type == 'img' %} + {% if src == 'file' %} + + + {{ desc }} + + {% else %} + {{ desc }} + {% endif %} +{% endif %} diff --git a/partials/script-log.liquid b/partials/script-log.liquid new file mode 100644 index 0000000..7e270c7 --- /dev/null +++ b/partials/script-log.liquid @@ -0,0 +1,113 @@ + \ No newline at end of file diff --git a/partials/song.liquid b/partials/song.liquid new file mode 100644 index 0000000..534da59 --- /dev/null +++ b/partials/song.liquid @@ -0,0 +1,10 @@ +
+
+

{{ data.title }}

+
{{ data.releaseDate }}
+

{{ data.description }}

+
+ {% comment %}
{{ content }}
{% endcomment %} + {{ content }} +
{{ index }}
+
\ No newline at end of file diff --git a/partials/status-coord.liquid b/partials/status-coord.liquid new file mode 100644 index 0000000..29e592f --- /dev/null +++ b/partials/status-coord.liquid @@ -0,0 +1 @@ +{{ text | default: 'X: #, Y: ##' }} diff --git a/partials/status-date.liquid b/partials/status-date.liquid new file mode 100644 index 0000000..296a866 --- /dev/null +++ b/partials/status-date.liquid @@ -0,0 +1,6 @@ + + Wochentag, + ##. + Monat + #### + diff --git a/partials/status-time.liquid b/partials/status-time.liquid new file mode 100644 index 0000000..f981e80 --- /dev/null +++ b/partials/status-time.liquid @@ -0,0 +1 @@ +{{ text | default: '00:00:00' }}{{ postfix | default: ' Uhr' }} diff --git a/simple.liquid b/simple.liquid new file mode 100644 index 0000000..b888886 --- /dev/null +++ b/simple.liquid @@ -0,0 +1,9 @@ +{% assign pageId = page.fileSlug -%} +{% layout 'hippie/default.liquid' %} + +{% block title %}{{ title }}{% endblock %} + +{% block links %} +{{ block.super -}} + +{% endblock %} diff --git a/status.liquid b/status.liquid new file mode 100644 index 0000000..86499ed --- /dev/null +++ b/status.liquid @@ -0,0 +1,37 @@ + +{% if pageClass %} +{%- capture classAttr %} class="{{ pageClass }}"{% endcapture -%} +{% endif -%} +{% if bodyClass %} + {%- capture bodyClassAttr %} class="{{ bodyClass }}"{% endcapture -%} +{% endif -%} + + + + {% block head %} + + {{- hippie.titlePrefix -}} + {% block title %}{{ title }}{% endblock -%} + {{ hippie.titlePostfix -}} + + {% block meta -%} + {% render 'hippie/partials/meta.liquid' %} + {% endblock -%} + {% block links -%} + + + {% endblock -%} + {% endblock -%} + + + +{%- block body %} +
+

{{ title }}

+ {% block main %}{% endblock -%} +
+{% render 'hippie/partials/footer-status' %} +{% endblock -%} + + \ No newline at end of file diff --git a/world.liquid b/world.liquid new file mode 100644 index 0000000..ca935dc --- /dev/null +++ b/world.liquid @@ -0,0 +1,11 @@ + + + + + {{ title }} + + + +{{ content }} + + \ No newline at end of file