aboutsummaryrefslogtreecommitdiffstats
path: root/backdrop/templates/author.html
diff options
context:
space:
mode:
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 %}