diff options
Diffstat (limited to 'themes/okadmin/templates')
| -rw-r--r-- | themes/okadmin/templates/index.liquid | 26 | ||||
| -rw-r--r-- | themes/okadmin/templates/partials/head.liquid | 13 | ||||
| -rw-r--r-- | themes/okadmin/templates/partials/inputs.liquid | 19 | ||||
| -rw-r--r-- | themes/okadmin/templates/partials/tail.liquid | 3 | ||||
| -rw-r--r-- | themes/okadmin/templates/resource.liquid | 15 | ||||
| -rw-r--r-- | themes/okadmin/templates/resource_new.liquid | 15 |
6 files changed, 91 insertions, 0 deletions
diff --git a/themes/okadmin/templates/index.liquid b/themes/okadmin/templates/index.liquid new file mode 100644 index 0000000..95c64dd --- /dev/null +++ b/themes/okadmin/templates/index.liquid @@ -0,0 +1,26 @@ +{% include 'partials/head' %} + +<section class="index main"> + {% for pair in resources %} + {% assign name = pair[0] %} + {% assign resource = pair[1] %} + {% assign spec = resource.spec %} + + <section class="resource-category {{name}}"> + <header> + <h2>{{name | capitalize}}</h2> + </header> + <ul class="resource-list"> + {% for data in resource.data %} + <li><a href="{{resource.type}}/{{data.id}}/">{{data.id}}</a></li> + {% endfor %} + </ul> + <footer> + <a class="add-new" href="{{resource.type}}/new/">+</a> + </footer> + </section> + + {% endfor %} +</section> + +{% include 'partials/tail' %} diff --git a/themes/okadmin/templates/partials/head.liquid b/themes/okadmin/templates/partials/head.liquid new file mode 100644 index 0000000..86915a4 --- /dev/null +++ b/themes/okadmin/templates/partials/head.liquid @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf8"> + <title>{{meta.title}}</title> + <link rel="stylesheet" href="{{meta.static}}/css/main.css"> + </head> + <body> + <header class="admin-header"> + <span class="breadcrumb">Admin</span> + <a class="site-link" href="/">View Site</a> + </header> + <div class="container"> diff --git a/themes/okadmin/templates/partials/inputs.liquid b/themes/okadmin/templates/partials/inputs.liquid new file mode 100644 index 0000000..4dd600d --- /dev/null +++ b/themes/okadmin/templates/partials/inputs.liquid @@ -0,0 +1,19 @@ +{% for pair in resource.spec %} + {% assign name = pair[0] %} + {% assign spec = pair[1] %} + {% assign type = spec.type %} + + <div class="property"> + {% if type == 'string' %} + <label for="{{name}}">{{name | capitalize}}</label> + <input + {% if spec.disabled %} + disabled="true" + {% endif %} + name="{{name}}" type="text" value="{{spec.value}}"> + {% else %} + <p><pre style="color: red">Admin template doesn't support '{{type}}' properties!</pre></p> + {% endif %} + </div> + +{% endfor %} diff --git a/themes/okadmin/templates/partials/tail.liquid b/themes/okadmin/templates/partials/tail.liquid new file mode 100644 index 0000000..773c8d4 --- /dev/null +++ b/themes/okadmin/templates/partials/tail.liquid @@ -0,0 +1,3 @@ + </div> {% comment %} closes container tag {% endcomment %} + </body> +</html> diff --git a/themes/okadmin/templates/resource.liquid b/themes/okadmin/templates/resource.liquid new file mode 100644 index 0000000..9c1b71c --- /dev/null +++ b/themes/okadmin/templates/resource.liquid @@ -0,0 +1,15 @@ +{% include 'partials/head' %} + +<section class="resource main"> + <nav> + <a href="../..">Back</a> + </nav> + <form action="." method="POST"> + <input type="hidden" name="_method" value="PUT"> + {% include 'partials/inputs' %} + <button type="submit">Save</button> + <div class="clear"></div> + </form> +</section> + +{% include 'partials/tail' %} diff --git a/themes/okadmin/templates/resource_new.liquid b/themes/okadmin/templates/resource_new.liquid new file mode 100644 index 0000000..1e414be --- /dev/null +++ b/themes/okadmin/templates/resource_new.liquid @@ -0,0 +1,15 @@ +{% include 'partials/head' %} + +<section class="main resource resource-new"> + <nav> + <a href="../..">Back</a> + </nav> + <form action=".." method="POST"> + <input type="hidden" name="_method" value="POST"> + {% include 'partials/inputs' %} + <button type="submit">Create</button> + <div class="clear"></div> + </form> +</section> + +{% include 'partials/tail' %} |
