diff options
Diffstat (limited to 'graymill/templates/author.html')
-rw-r--r-- | graymill/templates/author.html | 18 |
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 %} + |