summaryrefslogtreecommitdiff
path: root/themes/okcards/templates/partials
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2016-09-29 12:13:19 -0400
committerJules Laplace <jules@okfoc.us>2016-09-29 12:13:19 -0400
commitd4f9c31a1721fdea6b92ae90ca5c4bd8635fd0cb (patch)
tree4c8c73d15c77f4d79313ecb45fc650d43f65235f /themes/okcards/templates/partials
parent50fac2191fbf0dd101d6071242c03dfad295b3ed (diff)
v0.2.0 - new admin theme
Diffstat (limited to 'themes/okcards/templates/partials')
-rw-r--r--themes/okcards/templates/partials/app.liquid8
-rw-r--r--themes/okcards/templates/partials/flash.liquid20
-rw-r--r--themes/okcards/templates/partials/head.liquid13
-rw-r--r--themes/okcards/templates/partials/tail.liquid9
4 files changed, 0 insertions, 50 deletions
diff --git a/themes/okcards/templates/partials/app.liquid b/themes/okcards/templates/partials/app.liquid
deleted file mode 100644
index 46c19e4..0000000
--- a/themes/okcards/templates/partials/app.liquid
+++ /dev/null
@@ -1,8 +0,0 @@
-<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/okcards/templates/partials/flash.liquid b/themes/okcards/templates/partials/flash.liquid
deleted file mode 100644
index e51a86b..0000000
--- a/themes/okcards/templates/partials/flash.liquid
+++ /dev/null
@@ -1,20 +0,0 @@
-{% 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/okcards/templates/partials/head.liquid b/themes/okcards/templates/partials/head.liquid
deleted file mode 100644
index e9c27dc..0000000
--- a/themes/okcards/templates/partials/head.liquid
+++ /dev/null
@@ -1,13 +0,0 @@
-<!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/okcards/templates/partials/tail.liquid b/themes/okcards/templates/partials/tail.liquid
deleted file mode 100644
index 7727d69..0000000
--- a/themes/okcards/templates/partials/tail.liquid
+++ /dev/null
@@ -1,9 +0,0 @@
- </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>