aboutsummaryrefslogtreecommitdiffstats
path: root/graymill/templates/author.html
blob: 3606441a5a6f34a475a708051e503a22317798c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 %}