diff --git a/source/screens/demo/components.liquid b/source/screens/demo/components.liquid
index 4f4dd2b..75c6eeb 100644
--- a/source/screens/demo/components.liquid
+++ b/source/screens/demo/components.liquid
@@ -3,7 +3,7 @@ title: Components
tags:
- demoIndex
---
-{% layout 'hippie/page.liquid' %}
+{% layout "hippie/page.liquid" %}
{% block title %}Komponenten{% endblock %}
@@ -31,12 +31,8 @@ tags:
article>h1+p{Elemente:}+pre+h2{<tag>}+h4{Varianten}
@@ -44,8 +40,7 @@ tags:
Elemente:
// body // article // section // nav // aside // h1-h6 // header // footer
<body>
- Keine speziellen Attribute. Bekommt üblicherweise allgemeine Klassen zur Steuerung der Abmessungen
- zugewiesen.
+ Keine speziellen Attribute. Bekommt überlicherweise allgemeine Klassen zur Steuerung der Abmessungen zugewiesen.
<article>
Ein Artikel.
<section>
@@ -90,10 +85,10 @@ tags:
Innerhalb eines <header>.
<footer>
- Bekommt üblicherweise Klassen zur Positionierung und der Abmessungen zugewiesen.
+ Bekommt überlicherweise Klassen zur Positionierung und der Abmessungen zugewiesen.
- {% render 'hippie/partials/footer-pinned.liquid' %}
+ {% render "hippie/partials/footer-pinned.liquid" %}
@@ -172,11 +167,12 @@ tags:
Varianten
div.div_info>p
- Absatz in einer Box mit dem Typ Information.
+ Absatz in Informationsbox.
div.box_space>div.box_cube>span
div.box_placeholder+hr+div.box_placeholder_bkg
@@ -189,8 +185,8 @@ tags:
// table // caption // colgroup // col // tbody // thead // tfoot // tr // td // th
<table>
Varianten
- table.width_full.fix>(thead>tr>th.cell_pre[scope="col"]+th[scope="col"]*3)+tbody>tr>td.cell_pre+td*3
-
+ table.width_full.table_fix>(thead>tr>th.cell_pre[scope="col"]+th[scope="col"]*3)+tbody>tr>td.cell_pre+td*3
+
|
@@ -220,8 +216,8 @@ tags:
- table.width_full.stripe.fix.free>tr>td*3
-
+ table.width_full.table_stripe.table_fix.table_free>tr>td*3
+
| Tabelle |
|
@@ -243,7 +239,7 @@ tags:
Streifen |
- table.width_full.fix>(thead>tr>th[scope="col"]*3)+(tbody>tr>td*2+td.txt_right)+tfoot>tr>th[colspan="2"]+td.txt_right
+ table.width_full.table_fix>(thead>tr>th[scope="col"]*3)+(tbody>tr>td*2+td.txt_right)+tfoot>tr>th[colspan="2"]+td.txt_right
Die Verteilung der Zellen ist hier von ihrem Inhalt abhängig.
@@ -303,24 +299,20 @@ tags:
<select>
@@ -329,47 +321,79 @@ tags:
{% block script %}
{{ block.super -}}
{% endblock %}
\ No newline at end of file
diff --git a/source/screens/demo/examples/10print.liquid b/source/screens/demo/examples/10print.liquid
index 9ee9246..8486ef3 100644
--- a/source/screens/demo/examples/10print.liquid
+++ b/source/screens/demo/examples/10print.liquid
@@ -3,7 +3,7 @@ title: 10print
tags:
- demoExample
---
-{% layout 'hippie/simple.liquid' %}
+{% layout "hippie/simple.liquid" %}
{% block head %}
{{ block.super -}}
diff --git a/source/screens/demo/examples/clock.liquid b/source/screens/demo/examples/clock.liquid
index 7dc6998..ea927c6 100644
--- a/source/screens/demo/examples/clock.liquid
+++ b/source/screens/demo/examples/clock.liquid
@@ -3,8 +3,8 @@ title: Clock
tags:
- demoExample
---
-{% assign bodyClass = 'body_clock' -%}
-{% layout 'hippie/simple.liquid' %}
+{% assign bodyClass = "body_clock" -%}
+{% layout "hippie/simple.liquid" %}
{% block body %}
diff --git a/source/screens/demo/examples/game.liquid b/source/screens/demo/examples/game.liquid
index 734a5a6..19d97dd 100644
--- a/source/screens/demo/examples/game.liquid
+++ b/source/screens/demo/examples/game.liquid
@@ -4,8 +4,8 @@ tags:
- demoExample
- gameExample
---
-{% assign bodyClass = 'body_game' -%}
-{% layout 'hippie/simple.liquid' %}
+{% assign bodyClass = "body_game" -%}
+{% layout "hippie/simple.liquid" %}
{% block body %}
diff --git a/source/screens/demo/examples/start.liquid b/source/screens/demo/examples/start.liquid
index e11d3f8..3a42779 100644
--- a/source/screens/demo/examples/start.liquid
+++ b/source/screens/demo/examples/start.liquid
@@ -3,9 +3,10 @@ title: Start
tags:
- demoExample
---
+{% assign pageBase = "../../" -%}
{% assign pageId = page.fileSlug -%}
-{% assign bodyClass = 'body_start' -%}
-{% layout 'hippie/simple.liquid' %}
+{% assign bodyClass = "body_start" -%}
+{% layout "hippie/simple.liquid" %}
{% block body %}
diff --git a/source/screens/demo/examples/ui/cli.liquid b/source/screens/demo/examples/ui/cli.liquid
index a87d4b8..18f4cd4 100644
--- a/source/screens/demo/examples/ui/cli.liquid
+++ b/source/screens/demo/examples/ui/cli.liquid
@@ -3,8 +3,8 @@ title: CLI
tags:
- ui
---
-{% assign bodyClass = 'body_cli' -%}
-{% layout 'hippie/app.liquid' %}
+{% assign bodyClass = "body_cli" -%}
+{% layout "hippie/app.liquid" %}
{% block body %}
diff --git a/source/screens/demo/examples/ui/drag.liquid b/source/screens/demo/examples/ui/drag.liquid
index 37d806e..7b46674 100755
--- a/source/screens/demo/examples/ui/drag.liquid
+++ b/source/screens/demo/examples/ui/drag.liquid
@@ -3,7 +3,7 @@ title: Drag
tags:
- ui
---
-{% layout 'hippie/app.liquid' %}
+{% layout "hippie/app.liquid" %}
{% block body %}
@@ -22,8 +22,8 @@ tags:
{% endblock %}
{%- block script %}
-
-
+
+
{% endblock %}
\ No newline at end of file
diff --git a/source/screens/demo/examples/ui/tile.liquid b/source/screens/demo/examples/ui/tile.liquid
index be51071..4bcd8c4 100644
--- a/source/screens/demo/examples/ui/tile.liquid
+++ b/source/screens/demo/examples/ui/tile.liquid
@@ -3,8 +3,8 @@ title: Tile
tags:
- ui
---
-{% assign bodyClass = 'body_new' -%}
-{% layout 'hippie/app.liquid' %}
+{% assign bodyClass = "body_new" -%}
+{% layout "hippie/app.liquid" %}
{% block body %}
{% render 'hippie/partials/header-status', hippie: hippie, links: start %}
diff --git a/source/screens/demo/examples/ui/tui.liquid b/source/screens/demo/examples/ui/tui.liquid
index ac42d52..cb2434f 100644
--- a/source/screens/demo/examples/ui/tui.liquid
+++ b/source/screens/demo/examples/ui/tui.liquid
@@ -3,8 +3,8 @@ title: TUI
tags:
- ui
---
-{% assign bodyClass = 'body_frame' -%}
-{% layout 'hippie/app.liquid' %}
+{% assign bodyClass = "body_frame" -%}
+{% layout "hippie/app.liquid" %}
{% block body %}
{% render 'hippie/partials/frame-header.liquid' %}
diff --git a/source/screens/demo/examples/ui/windows.liquid b/source/screens/demo/examples/ui/windows.liquid
index d8700cd..02606e6 100644
--- a/source/screens/demo/examples/ui/windows.liquid
+++ b/source/screens/demo/examples/ui/windows.liquid
@@ -3,8 +3,8 @@ title: Windows
tags:
- ui
---
-{% assign bodyClass = 'body_frame' -%}
-{% layout 'hippie/app.liquid' %}
+{% assign bodyClass = "body_frame" -%}
+{% layout "hippie/app.liquid" %}
{% block body %}
@@ -50,10 +50,10 @@ tags:
{% endblock %}
{%- block script %}
-{% comment %}{% endcomment %}
+{% comment %}{% endcomment %}
-
-
+
+
-{% endblock %}
\ No newline at end of file
diff --git a/source/screens/demo/introduction.njk b/source/screens/demo/introduction.njk
new file mode 100644
index 0000000..f1a9752
--- /dev/null
+++ b/source/screens/demo/introduction.njk
@@ -0,0 +1,47 @@
+---
+title: Introduction
+tags:
+ - demoIndex
+---
+{% set pageBase = "../" %}
+{% set pageId = "intro" %}
+
+{% extends "demo/_main.njk" %}
+
+{% block title %}Einführung{% endblock %}
+{% block head %}
+ {{ super() }}
+{% endblock %}
+
+{% block main %}
+
+
+
+
+ …
+ Contact:
+
+ More: ,
+
+
+
+{% endblock %}
+
+{% block script %}
+ {{ super() }}
+
+{% endblock %}
\ No newline at end of file
diff --git a/source/screens/demo/layouts.liquid b/source/screens/demo/layouts.liquid
deleted file mode 100644
index 500e902..0000000
--- a/source/screens/demo/layouts.liquid
+++ /dev/null
@@ -1,314 +0,0 @@
----
-title: Layouts
-tags:
-- demoIndex
----
-{% layout 'hippie/page.liquid' %}
-
-{% block title %}Gestaltungen{% endblock %}
-
-{% block main %}
-
-
-
- Bereiche (sections)
- section
- section.overflow>div.float_space_left>img^p+p>br+a.lineLink
-
-
- {% render 'hippie/partials/placeholder-flag.liquid', type: 'img', src: 'file', width: '256', desc: 'Avatar' %}
-
- {% text hippie.placeholders.name %} {% text hippie.placeholders.address %}
- {% text hippie.placeholders.phone %} {% link hippie.placeholders.mail, '', '', 'a_line' %}
-
- nav
- div.overflow>(nav.float_space_left>ul>(li>a.a_button{punkt $})*4+nav>ul>(li>a.a_button_border{stufe $})*4)
-
- nav.nav_horizontal>ul>(li>a.a_button{abschnitt $})*4
-
- div.overflow>nav.nav_center_old>ul>(li>a.a_button{typ $})*4
-
- header
- header.header_page>h1+p+nav.nav_separate_right>ul>(li>a.a_button{nav $})*4^+nav.nav_right>ul>(li>a.a_button{nav $})*4
-
- header.header_page>nav.nav_right>ul>(li>a.a_button{nav $})*4
-
-
-
- footer.pos_abs.pin_bottom>nav.nav_column>ul>(li>a.a_button_text)*4
-
-
-
-
- Interaktiv (interactive)
- input
-
-
-
-
-
-
-
- form
-
-
- Gruppierung (grouping)
- p
- p.txt_right+p.txt_center+p.txt_left
- Rechts
- Mittig
- Links
- h*
- h3.txt_color_dark+p.txt_tiny
- Dunkle Überschrift
- Mit winzigem Textabsatz
- a>h4
-
- Überschrift als Block-Verweis
-
- Überschrift 1
- Kann mehrmals, ohne großen Abstand oberhalb, untereinander stehen.
- Überschrift 2
- kann das ebenso.
- hr
- hr.space_even_half
-
- hr.dotted.space_even_fourth
-
- ul
- nav>ul.list_link>(li>a)+li>a>img+span
-
- div
- div.space_left_fourth>(hr+p+hr)
-
-
- Eingerückter Inhalt
-
-
-
- Tabellen
- table.link>thead>tr>th{ }+th{ab / zy}+th{neu / alt}^^(tbody>tr>td.icon[rowspan="2"]>img[width=16 height=16]^+td.link>span{name}+a[target=_blank]{url}^+td[rowspan="2"]{yyy-mm-dd}^tr>td.text>div.shorten{beschreibung})*2
-
-
-
- | |
- Ab / Zy |
- Neu / Alt |
-
-
-
-
- | ■ |
-
- Name
- URL
- |
- YYYY-MM-DD |
-
-
- |
- Beschreibung
- |
-
-
-
-
- | ■ |
-
- Name
- URL
- |
- YYYY-MM-DD |
-
-
- |
- Beschreibung
- |
-
-
-
-
- Eingebettet
-
- {% render 'hippie/partials/placeholder-flag.liquid', type: '', width: '128', desc: 'Fahne von Interaktionsweise' %}
-
-
-
-{% endblock %}
-
-{% block script %}
-{{ block.super -}}
-
-
-{% endblock %}
\ No newline at end of file
diff --git a/source/screens/demo/layouts.njk b/source/screens/demo/layouts.njk
new file mode 100644
index 0000000..a35cfff
--- /dev/null
+++ b/source/screens/demo/layouts.njk
@@ -0,0 +1,317 @@
+---
+title: Layouts
+tags:
+ - demoIndex
+---
+{% set pageBase = "../" %}
+{% set pageId = page.fileSlug %}
+
+{% extends "demo/_main.njk" %}
+{% import "hippie/macros/_placeholder.njk" as ph %}
+
+{% block title %}Gestaltungen{% endblock %}
+{% block head %}
+ {{ super() }}
+{% endblock %}
+
+{% block main %}
+
+
+
+
+ Bereiche (sections)
+ section
+ section.overflow>div.float_space_left>img^p+p>br+a.lineLink
+
+ {{ ph.flag('img', '', '', 'Avatar', '256') }}
+ {{ ph.name() }} {{ ph.address() }}
+ {{ ph.phone() }} {{ ph.email('lineLink') }}
+
+ nav
+ div.overflow>(nav.float_space_left>ul>(li>a.a_button{punkt $})*4+nav>ul>(li>a.a_button_border{stufe $})*4)
+
+ nav.nav_horizontal>ul>(li>a.a_button{abschnitt $})*4
+
+ div.overflow>nav.nav_center_old>ul>(li>a.a_button{typ $})*4
+
+ header
+ header.header_page>h1+p+nav.nav_separate_right>ul>(li>a.a_button{nav $})*4^+nav.nav_right>ul>(li>a.a_button{nav $})*4
+
+ header.header_page>nav.nav_right>ul>(li>a.a_button{nav $})*4
+
+
+
+ footer.pos_abs.pin_bottom>nav.nav_column>ul>(li>a.a_button_text)*4
+
+
+
+
+ Interaktiv (interactive)
+ input
+
+
+
+
+
+
+
+ form
+
+
+ Gruppierung (grouping)
+ p
+ p.txt_right+p.txt_center+p.txt_left
+ Rechts
+ Mittig
+ Links
+ h*
+ h3.txt_color_dark+p.txt_tiny
+ Dunkle Überschrift
+ Mit winzigem Textabsatz
+ a>h4
+
+ Überschrift als Block-Verweis
+
+ Überschrift 1
+ Kann mehrmals, ohne großen Abstand oberhalb, untereinander stehen.
+ Überschrift 2
+ kann das ebenso.
+ hr
+ hr.space_even_half
+
+ hr.dotted.space_even_fourth
+
+ ul
+ nav>ul.list_link>(li>a)+li>a>img+span
+
+ div
+ div.space_left_fourth>(hr+p+hr)
+
+
+ Eingerückter Inhalt
+
+
+
+ Tabellen
+ table.table_link>thead>tr>th{ }+th{ab / zy}+th{neu / alt}^^(tbody>tr>td.cell_icon[rowspan="2"]>img[width=16 height=16]^+td.cell_link>a[target=_blank]{name}+a[target=_blank]{url}^+td.cell_date[rowspan="2"]{yyy-mm-dd}^tr>td.cell_text>div.shorten{beschreibung})*2
+
+
+
+ | |
+ Ab / Zy |
+ Neu / Alt |
+
+
+
+
+ | ■ |
+
+ Name
+ URL
+ |
+ YYYY-MM-DD |
+
+
+ |
+ Beschreibung
+ |
+
+
+
+
+ | ■ |
+
+ Name
+ URL
+ |
+ YYYY-MM-DD |
+
+
+ |
+ Beschreibung
+ |
+
+
+
+
+ Eingebettet
+
+ {{ ph.flag() }}
+
+
+
+{% endblock %}
+
+{% block script %}
+ {{ super() }}
+
+ {{ log.asset(true) }}
+ {{ log.log('Assets loaded.', assetsLoaded) }}
+
+{% endblock %}
\ No newline at end of file
diff --git a/source/screens/demo/pages/blank.liquid b/source/screens/demo/pages/blank.liquid
index 5cf5e7c..6ef5d56 100644
--- a/source/screens/demo/pages/blank.liquid
+++ b/source/screens/demo/pages/blank.liquid
@@ -1,5 +1,10 @@
---
title: Blank
---
+{% assign pageBase = "../../" -%}
{% assign pageId = page.fileSlug -%}
-{% layout 'hippie/simple.liquid' %}
+{% layout "hippie/simple.liquid" %}
+
+{% block body %}
+
+{% endblock %}
diff --git a/source/screens/demo/pages/default.liquid b/source/screens/demo/pages/default.liquid
index 9b84b78..bb44e71 100644
--- a/source/screens/demo/pages/default.liquid
+++ b/source/screens/demo/pages/default.liquid
@@ -1,13 +1,17 @@
---
title: Default
---
+{% assign pageBase = "../" -%}
{% assign pageId = page.fileSlug -%}
-{% assign pageClass = 'default' -%}
-{% assign bodyClass = 'default' -%}
-{% layout 'hippie/default.liquid' %}
+{% assign pageClass = "default" -%}
+{% assign bodyClass = "default" -%}
+{% layout "hippie/default.liquid" %}
{% block title %}{{ title }}{% endblock %}
-{% block body %}
-
-{% endblock %}
+{% block script %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/source/screens/demo/pages/error/304.liquid b/source/screens/demo/pages/error/304.liquid
index 75127a7..4fa65ef 100644
--- a/source/screens/demo/pages/error/304.liquid
+++ b/source/screens/demo/pages/error/304.liquid
@@ -1,8 +1,9 @@
---
title: 304
---
-{% assign bodyClass = 'body_status' %}
-{% layout 'hippie/status.liquid' %}
+{% assign pageBase = "../../../" -%}
+{% assign bodyClass = "body_status" %}
+{% layout "hippie/status.liquid" %}
{% block main %}
{{ block.super -}}
diff --git a/source/screens/demo/pages/error/400.liquid b/source/screens/demo/pages/error/400.liquid
index ffe7d9c..86cb860 100644
--- a/source/screens/demo/pages/error/400.liquid
+++ b/source/screens/demo/pages/error/400.liquid
@@ -1,8 +1,9 @@
---
title: 400
---
-{% assign bodyClass = 'body_status' %}
-{% layout 'hippie/status.liquid' %}
+{% assign pageBase = "../../../" -%}
+{% assign bodyClass = "body_status" %}
+{% layout "hippie/status.liquid" %}
{% block main %}
{{ block.super -}}
diff --git a/source/screens/demo/pages/error/401.liquid b/source/screens/demo/pages/error/401.liquid
index a2fbb39..09029d6 100644
--- a/source/screens/demo/pages/error/401.liquid
+++ b/source/screens/demo/pages/error/401.liquid
@@ -1,8 +1,9 @@
---
title: 401
---
-{% assign bodyClass = 'body_status' %}
-{% layout 'hippie/status.liquid' %}
+{% assign pageBase = "../../../" -%}
+{% assign bodyClass = "body_status" %}
+{% layout "hippie/status.liquid" %}
{% block main %}
{{ block.super -}}
diff --git a/source/screens/demo/pages/error/403.liquid b/source/screens/demo/pages/error/403.liquid
index cfa9eed..31a5790 100644
--- a/source/screens/demo/pages/error/403.liquid
+++ b/source/screens/demo/pages/error/403.liquid
@@ -1,8 +1,9 @@
---
title: 403
---
-{% assign bodyClass = 'body_status' %}
-{% layout 'hippie/status.liquid' %}
+{% assign pageBase = "../../../" -%}
+{% assign bodyClass = "body_status" %}
+{% layout "hippie/status.liquid" %}
{% block main %}
{{ block.super -}}
diff --git a/source/screens/demo/pages/error/404.liquid b/source/screens/demo/pages/error/404.liquid
index 9a00731..a90082a 100644
--- a/source/screens/demo/pages/error/404.liquid
+++ b/source/screens/demo/pages/error/404.liquid
@@ -1,8 +1,9 @@
---
title: 404
---
-{% assign bodyClass = 'body_status' %}
-{% layout 'hippie/status.liquid' %}
+{% assign pageBase = "../../../" -%}
+{% assign bodyClass = "body_status" %}
+{% layout "hippie/status.liquid" %}
{% block main %}
{{ block.super -}}
diff --git a/source/screens/demo/pages/error/408.liquid b/source/screens/demo/pages/error/408.liquid
index 1f0ef44..7984e61 100644
--- a/source/screens/demo/pages/error/408.liquid
+++ b/source/screens/demo/pages/error/408.liquid
@@ -1,8 +1,9 @@
---
title: 408
---
-{% assign bodyClass = 'body_status' %}
-{% layout 'hippie/status.liquid' %}
+{% assign pageBase = "../../../" -%}
+{% assign bodyClass = "body_status" %}
+{% layout "hippie/status.liquid" %}
{% block main %}
{{ block.super -}}
diff --git a/source/screens/demo/pages/error/500.liquid b/source/screens/demo/pages/error/500.liquid
index 5e6cb69..6d21ccc 100644
--- a/source/screens/demo/pages/error/500.liquid
+++ b/source/screens/demo/pages/error/500.liquid
@@ -1,8 +1,9 @@
---
title: 500
---
-{% assign bodyClass = 'body_status' %}
-{% layout 'hippie/status.liquid' %}
+{% assign pageBase = "../../../" -%}
+{% assign bodyClass = "body_status" %}
+{% layout "hippie/status.liquid" %}
{% block main %}
{{ block.super -}}
diff --git a/source/screens/demo/pages/error/503.liquid b/source/screens/demo/pages/error/503.liquid
index 2a01f87..4805020 100644
--- a/source/screens/demo/pages/error/503.liquid
+++ b/source/screens/demo/pages/error/503.liquid
@@ -1,8 +1,9 @@
---
title: 503
---
-{% assign bodyClass = 'body_status' %}
-{% layout 'hippie/status.liquid' %}
+{% assign pageBase = "../../../" -%}
+{% assign bodyClass = "body_status" %}
+{% layout "hippie/status.liquid" %}
{% block main %}
{{ block.super -}}
diff --git a/source/screens/demo/pages/maintenance.liquid b/source/screens/demo/pages/maintenance.liquid
index fe36599..4fa3286 100644
--- a/source/screens/demo/pages/maintenance.liquid
+++ b/source/screens/demo/pages/maintenance.liquid
@@ -1,8 +1,9 @@
---
title: Maintenance
---
-{% assign pageClass = 'h_full_view' -%}
-{% layout 'hippie/status.liquid' %}
+{% assign pageBase = "../../" -%}
+{% assign pageClass = "h_full_view" -%}
+{% layout "hippie/status.liquid" %}
{% block body %}
diff --git a/source/style/hippie-style b/source/style/hippie-style
index 69535d8..91d136f 160000
--- a/source/style/hippie-style
+++ b/source/style/hippie-style
@@ -1 +1 @@
-Subproject commit 69535d87ac38cbe210ed40f6c2b9952b67b8ce5f
+Subproject commit 91d136f1c310c6276ecb2f4318f468f842099816
diff --git a/source/templates/hippie/app.liquid b/source/templates/hippie/app.liquid
index 4118172..7e704f7 100644
--- a/source/templates/hippie/app.liquid
+++ b/source/templates/hippie/app.liquid
@@ -1,6 +1,7 @@
+{% assign pageBase = "../../../" -%}
{% assign pageId = page.fileSlug -%}
-{% assign pageClass = 'html_ui' -%}
-{% layout 'hippie/default.liquid' %}
+{% assign pageClass = "html_ui" -%}
+{% layout "hippie/default.liquid" %}
{% block title %}{{ title }}{% endblock %}
diff --git a/source/templates/hippie/default.liquid b/source/templates/hippie/default.liquid
index 4cb653e..bdcf341 100644
--- a/source/templates/hippie/default.liquid
+++ b/source/templates/hippie/default.liquid
@@ -18,10 +18,10 @@
{{ hippie.titlePostfix -}}
{% block meta -%}
- {% render 'hippie/partials/meta.liquid' %}
+ {% render "hippie/partials/meta.liquid" %}
{% endblock -%}
{% block links -%}
- {% render 'hippie/partials/links.liquid' %}
+ {% render "hippie/partials/links.liquid" %}
{% endblock -%}
{% endblock -%}
@@ -29,7 +29,7 @@
{%- block body %}{% endblock -%}
{%- block script %}{% endblock -%}
diff --git a/source/templates/hippie/full.liquid b/source/templates/hippie/full.liquid
index 5b22b17..a3bc72c 100644
--- a/source/templates/hippie/full.liquid
+++ b/source/templates/hippie/full.liquid
@@ -18,17 +18,19 @@
{{ hippie.titlePostfix -}}
{% block meta -%}
- {% render 'hippie/partials/meta.liquid', author: 'Interaktionsweise', desc: 'Hippie interweaves preeminent personal interface elements' %}
+ {% 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' -%}
+ {% 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' %}
+ {% render "hippie/partials/links.liquid" %}
+ {% comment %}{% endcomment %}
+ {% comment %}{% endcomment %}
{% endblock -%}
- {% render 'hippie/partials/log-log' with 'HEAD end :: Links parsed, starting to load.' as msg -%}
+ {% render "hippie/partials/log-log" with "HEAD end :: Links parsed, starting to load." as msg -%}
{% endblock -%}
diff --git a/source/templates/hippie/page.liquid b/source/templates/hippie/page.liquid
index b6edd40..4afccb7 100644
--- a/source/templates/hippie/page.liquid
+++ b/source/templates/hippie/page.liquid
@@ -1,5 +1,5 @@
{% assign pageId = page.fileSlug -%}
-{% layout 'hippie/full.liquid' %}
+{% layout "hippie/full.liquid" %}
{% block meta %}
{{ block.super -}}
@@ -22,15 +22,15 @@
{% block body %}
{{ block.super -}}
-{% render 'hippie/partials/nav-page.liquid' %}
+{% render "hippie/partials/nav-page.liquid" %}
- {% render 'hippie/partials/header-page.liquid' %}
+ {% render "hippie/partials/header-page.liquid" %}
{% block main %}{% endblock %}
- {% render 'hippie/partials/footer-page.liquid' %}
+ {% render "hippie/partials/footer-page.liquid" %}
{% endblock %}
diff --git a/source/templates/hippie/partials/links.liquid b/source/templates/hippie/partials/links.liquid
index 32d854d..c1a8845 100644
--- a/source/templates/hippie/partials/links.liquid
+++ b/source/templates/hippie/partials/links.liquid
@@ -1,3 +1,3 @@
{% comment %}{% endcomment %}
-
+
diff --git a/source/templates/hippie/partials/nav-page.liquid b/source/templates/hippie/partials/nav-page.liquid
index cf52d72..36e5184 100644
--- a/source/templates/hippie/partials/nav-page.liquid
+++ b/source/templates/hippie/partials/nav-page.liquid
@@ -4,7 +4,7 @@
- {% comment %} {% endcomment %}
+ {% comment %} {% endcomment %}
@@ -22,7 +22,7 @@
- {% comment %} {% endcomment %}
+ {% comment %} {% endcomment %}
diff --git a/source/templates/hippie/partials/placeholder-flag.liquid b/source/templates/hippie/partials/placeholder-flag.liquid
index 280a48c..02432cb 100644
--- a/source/templates/hippie/partials/placeholder-flag.liquid
+++ b/source/templates/hippie/partials/placeholder-flag.liquid
@@ -1,5 +1,4 @@
{% assign height = width | divided_by: 1.6 %}
-
{% if type == 'svg' or type == '' %}
|