From 6c5bf2e54d25e0c1cd969eb12e13c89d0bdacf4a Mon Sep 17 00:00:00 2001 From: sthag Date: Tue, 17 Feb 2026 21:01:00 +0100 Subject: [PATCH] feat: Replace nunjucks with liquid for introduction screen --- source/screens/demo/introduction.liquid | 40 +++++++++++++++++++++ source/screens/demo/introduction.njk | 47 ------------------------- 2 files changed, 40 insertions(+), 47 deletions(-) create mode 100644 source/screens/demo/introduction.liquid delete mode 100644 source/screens/demo/introduction.njk diff --git a/source/screens/demo/introduction.liquid b/source/screens/demo/introduction.liquid new file mode 100644 index 0000000..af5cf07 --- /dev/null +++ b/source/screens/demo/introduction.liquid @@ -0,0 +1,40 @@ +--- +title: Introduction +tags: +- demoIndex +--- +{% layout "hippie/page.liquid" %} + +{% block title %}Einführung{% endblock %} + +{% block main %} +
+
+
+

Introduction to HIPPIE

+

Hippie interweaves preeminent personal interface elements.

+
+
+
+

+

Contact: +

+

More: , +

+
+
+{% endblock %} + +{% block script %} +{{ block.super -}} + +{% endblock %} \ No newline at end of file diff --git a/source/screens/demo/introduction.njk b/source/screens/demo/introduction.njk deleted file mode 100644 index f1a9752..0000000 --- a/source/screens/demo/introduction.njk +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Introduction -tags: - - demoIndex ---- -{% set pageBase = "../" %} -{% set pageId = "intro" %} - -{% extends "demo/_main.njk" %} - -{% block title %}Einführung{% endblock %} -{% block head %} - {{ super() }} -{% endblock %} - -{% block main %} - -
-
-
-

Introduction to HIPPIE

-

Hippie interweaves preeminent personal interface elements.

-
-
-
-

-

Contact: -

-

More: , -

-
-
-{% endblock %} - -{% block script %} - {{ super() }} - -{% endblock %} \ No newline at end of file