summaryrefslogtreecommitdiff
path: root/themes/test/templates/partials
diff options
context:
space:
mode:
Diffstat (limited to 'themes/test/templates/partials')
-rw-r--r--themes/test/templates/partials/app.liquid8
-rw-r--r--themes/test/templates/partials/flash.liquid20
-rw-r--r--themes/test/templates/partials/head.liquid13
-rw-r--r--themes/test/templates/partials/tail.liquid9
4 files changed, 50 insertions, 0 deletions
diff --git a/themes/test/templates/partials/app.liquid b/themes/test/templates/partials/app.liquid
new file mode 100644
index 0000000..46c19e4
--- /dev/null
+++ b/themes/test/templates/partials/app.liquid
@@ -0,0 +1,8 @@
+<script type="text/html" id="stack-template">
+</script>
+
+<script type="text/html" id="card-template">
+</script>
+
+<div id="stacks">
+</div> \ No newline at end of file
diff --git a/themes/test/templates/partials/flash.liquid b/themes/test/templates/partials/flash.liquid
new file mode 100644
index 0000000..e51a86b
--- /dev/null
+++ b/themes/test/templates/partials/flash.liquid
@@ -0,0 +1,20 @@
+{% if success.length > 0 %}
+<div class="success">
+ <div class="message">Changes saved.</div>
+ <!--
+ {% for info in success %}
+ <div class="message">{{info.action}}</div>
+ {% endfor %}
+ -->
+</div>
+{% endif %}
+
+{% if errors.length > 0 %}
+<div class="errors">
+ {% for error in errors %}
+ <div class="error">
+ <div class="message">{{error.message}}</div>
+ </div>
+ {% endfor %}
+</div>
+{% endif %} \ No newline at end of file
diff --git a/themes/test/templates/partials/head.liquid b/themes/test/templates/partials/head.liquid
new file mode 100644
index 0000000..e9c27dc
--- /dev/null
+++ b/themes/test/templates/partials/head.liquid
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf8">
+ <title>{{meta.project}} Admin</title>
+ <link rel="stylesheet" href="{{meta.static}}/css/main.css">
+ </head>
+ <body>
+ <header class="admin-header">
+ <span class="breadcrumb"><b>{{meta.project}}</b> Admin</span>
+ <a class="site-link" href="/">View Site</a>
+ </header>
+ <div class="container"> \ No newline at end of file
diff --git a/themes/test/templates/partials/tail.liquid b/themes/test/templates/partials/tail.liquid
new file mode 100644
index 0000000..7727d69
--- /dev/null
+++ b/themes/test/templates/partials/tail.liquid
@@ -0,0 +1,9 @@
+ </body>
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
+ <script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.6.0/lodash.min.js"></script>
+ <script src="/admin/_lib/js/jqueryui-draggable.js"></script>
+ <script src="/admin/_lib/js/upload.js"></script>
+ <script src="/admin/_lib/js/parser.js"></script>
+ <script src="/admin/_lib/js/okcms.js"></script>
+ <script src="/admin/js/app.js"></script>
+</html>