Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roryg/ghostwriter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRory Gibson <rg.rorygibson@gmail.com>2014-01-20 01:22:02 +0400
committerRory Gibson <rg.rorygibson@gmail.com>2014-01-20 01:22:02 +0400
commit0531873018d59665d29a1088f2a93bb28ecab527 (patch)
tree9e880613ec3e15ed21a77fbd3da7c014964aab9d
parent6b9edfd2cf4309f73a6440e323db5fc12224a50e (diff)
Added a page.hbs file for static pages
-rw-r--r--page.hbs21
1 files changed, 21 insertions, 0 deletions
diff --git a/page.hbs b/page.hbs
new file mode 100644
index 0000000..689bb60
--- /dev/null
+++ b/page.hbs
@@ -0,0 +1,21 @@
+{{!< default}}
+
+<div class="container">
+ {{#post}}
+ <article class="{{post_class}}">
+ <header class="post-header">
+ <h1 class="post-title">{{title}}</h1>
+
+ <p class="post-date">{{@blog.description}}</p>
+ </header>
+
+ <div class="post-content">
+ {{{content}}}
+
+ {{#if tags}}
+ <p class="post-tags"><span>Tagged:</span> {{tags}}</p>
+ {{/if}}
+ </div>
+ </article>
+ {{/post}}
+</div> \ No newline at end of file