diff options
Diffstat (limited to 'docs/_layouts/post.html')
-rw-r--r-- | docs/_layouts/post.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/_layouts/post.html b/docs/_layouts/post.html new file mode 100644 index 000000000..b4bef7e79 --- /dev/null +++ b/docs/_layouts/post.html @@ -0,0 +1,19 @@ +--- +layout: page +--- + +{% assign author = site.authors[page.author] %} +<div class="post"> + <div class="blog-post-header"> + <h1 class="blog-title">{{ page.title }}</h1> + <p class="meta">by {{ author.display_name }}, on {{ page.date | date: "%-d %B %Y" }}</p> + </div> + {{ content }} + + <hr> + <p>If you have any questions, or problems installing the code, please do + <a href="/community/">get in touch</a>, or post on our + <a href="https://groups.google.com/a/mysociety.org/forum/#!forum/fixmystreet">mailing list</a>. + +</div> + |