aboutsummaryrefslogtreecommitdiffstats
path: root/notebook/templates/author.html
blob: 624ac8266f1f877e87ad5e57271a0e42ae6f9604 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% 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="Articles de {{ author }}">

<!-- Facebook Meta Data -->
<meta property="og:title" content="{{ SITENAME }} ~ {{ author }}" />
<meta property="og:description" content="Articles de {{ author }}" />
<meta property="og:image" content="{{ AVATAR }}" />
{% endblock head %}
{% block title %}{{ SITENAME }} - {{ author }}{% endblock %}