From bb0a4f4e126c05fc73d566986fd1612468f5be67 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 30 Oct 2013 00:18:56 -0400 Subject: initial commit --- tozt/layouts/_root.html | 5 +++++ tozt/layouts/default.html | 40 ++++++++++++++++++++++++++++++++++++++++ tozt/layouts/paginator.html | 27 +++++++++++++++++++++++++++ tozt/layouts/posts.html | 40 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 112 insertions(+) create mode 100644 tozt/layouts/_root.html create mode 100644 tozt/layouts/default.html create mode 100644 tozt/layouts/paginator.html create mode 100644 tozt/layouts/posts.html (limited to 'tozt/layouts') diff --git a/tozt/layouts/_root.html b/tozt/layouts/_root.html new file mode 100644 index 0000000..8d62675 --- /dev/null +++ b/tozt/layouts/_root.html @@ -0,0 +1,5 @@ +--- +layout : default +--- +

{{ page.title }}

+{{{ page.content }}} diff --git a/tozt/layouts/default.html b/tozt/layouts/default.html new file mode 100644 index 0000000..8f1eecb --- /dev/null +++ b/tozt/layouts/default.html @@ -0,0 +1,40 @@ + + + + + {{page.title}} + + {{# stylesheets.load }} + style.css + google_prettify/sons-of-obsidian.css + {{/ stylesheets.load }} + + + + +
+
+ + gravatar +
+
+
+ +
+ {{{ content }}} +
+ + +{{{ widgets.google_prettify }}} + + + diff --git a/tozt/layouts/paginator.html b/tozt/layouts/paginator.html new file mode 100644 index 0000000..68a9013 --- /dev/null +++ b/tozt/layouts/paginator.html @@ -0,0 +1,27 @@ +--- +layout : default +--- + +{{#collection.paginator}} +
+

{{title}} {{ date }}

+ {{{ summary }}} + +
+{{/collection.paginator}} + diff --git a/tozt/layouts/posts.html b/tozt/layouts/posts.html new file mode 100644 index 0000000..6bb7b4b --- /dev/null +++ b/tozt/layouts/posts.html @@ -0,0 +1,40 @@ +--- +layout : default +--- +

{{ page.date }}{{page.title}}

+
+ {{{ page.content }}} +
+ +
+ Tags: + +
+
+ +
+{{{ widgets.comments }}} -- cgit v1.2.3-54-g00ecf