diff --git a/source/screens/demo/examples/ui/index.liquid b/source/screens/demo/examples/ui/index.liquid
new file mode 100644
index 0000000..614beed
--- /dev/null
+++ b/source/screens/demo/examples/ui/index.liquid
@@ -0,0 +1,24 @@
+---
+title: UI
+tags:
+- demoExample
+- index
+---
+{% layout "hippie/simple.liquid" %}
+
+{% block title %}{{ title }}{% endblock %}
+
+{% block body %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/source/screens/demo/examples/ui/index.njk b/source/screens/demo/examples/ui/index.njk
deleted file mode 100644
index 6c8d79f..0000000
--- a/source/screens/demo/examples/ui/index.njk
+++ /dev/null
@@ -1,25 +0,0 @@
----
-title: UI
-tags:
- - demoExample
- - index
----
-{% extends "demo/_default.njk" %}
-{% import "hippie/macros/_placeholder.njk" as ph %}
-
-{% block title %}{{ title }}{% endblock %}
-
-{% block body %}
-
-{% endblock %}
\ No newline at end of file
diff --git a/source/templates/hippie/simple.liquid b/source/templates/hippie/simple.liquid
new file mode 100644
index 0000000..b644f9f
--- /dev/null
+++ b/source/templates/hippie/simple.liquid
@@ -0,0 +1,15 @@
+{% assign pageId = page.fileSlug -%}
+{% layout "hippie/default.liquid" %}
+
+{% block title %}{{ title }}{% endblock %}
+
+{% block links %}
+{{ block.super -}}
+
+{% endblock %}
+
+{% block script %}
+
+
+
+{% endblock %}
\ No newline at end of file