diff --git a/source/screens/demo/examples/ui/explorer.liquid b/source/screens/demo/examples/ui/explorer.liquid
new file mode 100644
index 0000000..f8e66fa
--- /dev/null
+++ b/source/screens/demo/examples/ui/explorer.liquid
@@ -0,0 +1,145 @@
+---
+title: Explorer
+tags:
+- ui
+---
+{% assign bodyClass = "body_frame" -%}
+{% layout "hippie/app.liquid" %}
+
+{% block body %}
+{% render 'hippie/partials/frame-header.liquid' %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ | name |
+ date |
+ type |
+ size |
+
+
+
+
+ | folder |
+ YYYY-MM-DD |
+ folder |
+ 4KB |
+
+
+ | file |
+ YYYY-MM-DD |
+ folder |
+ 1B |
+
+
+
+
+ {% render 'hippie/partials/frame-status.liquid' %}
+
+
+{% render 'hippie/partials/frame-mode.liquid' %}
+{% endblock %}
\ No newline at end of file
diff --git a/source/screens/demo/examples/ui/explorer.njk b/source/screens/demo/examples/ui/explorer.njk
deleted file mode 100755
index c54ea0a..0000000
--- a/source/screens/demo/examples/ui/explorer.njk
+++ /dev/null
@@ -1,146 +0,0 @@
----
-title: GUI explorer
-tags:
- - ui
----
-{% set pageId = page.fileSlug %}
-
-{% extends "hippie/_app_frame.njk" %}
-
-{% block body %}
- {{ io.frameHeader('title-bar') }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- | name |
- date |
- type |
- size |
-
-
-
-
- | folder |
- YYYY-MM-DD |
- folder |
- 4KB |
-
-
- | file |
- YYYY-MM-DD |
- folder |
- 1B |
-
-
-
-
- {{ io.statusBar() }}
-
-
- {{ io.frameFooter('mode-bar') }}
-{% endblock %}
\ No newline at end of file