aboutsummaryrefslogtreecommitdiffstats
path: root/graymill/templates/author.html
diff options
context:
space:
mode:
authorRahul Nair <rn@rahul-nair.com>2017-08-04 07:47:36 +0530
committerJustin Mayer <entroP@gmail.com>2017-08-03 19:17:36 -0700
commit3f9ddddab6f49eb2d2df35d47de78c0dddea3088 (patch)
tree65be5b1919d6f2feff3f94a5f7f8e6cbc575253d /graymill/templates/author.html
parent2a00d3cbf6ed7745ae3cd2f6a557bad31d4a3990 (diff)
downloadpelican-themes-3f9ddddab6f49eb2d2df35d47de78c0dddea3088.tar.gz
Add Graymill theme
Diffstat (limited to 'graymill/templates/author.html')
-rw-r--r--graymill/templates/author.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/graymill/templates/author.html b/graymill/templates/author.html
new file mode 100644
index 0000000..3606441
--- /dev/null
+++ b/graymill/templates/author.html
@@ -0,0 +1,18 @@
+{% extends "index.html" %}
+{% block head %}
+ {{ super() }}
+ <meta name="twitter:creator" content="{{ TWITTER_USERNAME }}">
+ <meta name="twitter:url" content="{{ SITEURL }}/{{ author.url }}">
+ <meta name="twitter:title" content="{{ SITENAME }} ~ {{ author }}">
+ <meta name="twitter:description" content="All articles by {{ author }}">
+
+ <!-- Facebook Meta Data -->
+ <meta property="og:title" content="{{ SITENAME }} ~ {{ author }}"/>
+ <meta property="og:description" content="All articles by {{ author }}"/>
+ <meta property="og:image" content="{{ AVATAR }}"/>
+{% endblock head %}
+{% block title %}{{ SITENAME }} - {{ author }}{% endblock %}
+{% block heading %}
+ <h2>Author: <i>{{ author }}</i></h2>
+{% endblock %}
+