aboutsummaryrefslogtreecommitdiffstats
path: root/backdrop/templates/author.html
diff options
context:
space:
mode:
authorChris MacMackin <cmacmackin@gmail.com>2015-05-14 23:00:11 -0300
committerChris MacMackin <cmacmackin@gmail.com>2015-05-14 23:00:11 -0300
commitfb7081b1bf01032bf75ff22b559e9d15e697a9fb (patch)
tree7858d773faf51a3f57bc6ab034a5853be8f3faff /backdrop/templates/author.html
parentc31fb657b54696e9426249bdee5dcd111ec1ec40 (diff)
downloadpelican-themes-fb7081b1bf01032bf75ff22b559e9d15e697a9fb.zip
pelican-themes-fb7081b1bf01032bf75ff22b559e9d15e697a9fb.tar.gz
pelican-themes-fb7081b1bf01032bf75ff22b559e9d15e697a9fb.tar.bz2
Added the Backdrop theme.
Diffstat (limited to 'backdrop/templates/author.html')
-rw-r--r--backdrop/templates/author.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/backdrop/templates/author.html b/backdrop/templates/author.html
new file mode 100644
index 0000000..11e4793
--- /dev/null
+++ b/backdrop/templates/author.html
@@ -0,0 +1,12 @@
+{% extends "base.html" %}
+{% block title %}{{ author|striptags }}{% endblock title %}
+
+{% block content %}
+{% import 'macros.html' as macros %}
+<div class="row">
+ <div class="small-12 columns">
+ <h2>Articles by {{ author }}</h2>
+ {{ macros.page_list(articles_page, articles_paginator.num_pages, page_name, SITEURL, disqus=DISQUS_SITENAME ) }}
+ </div>
+</div>
+{% endblock content %}