diff options
Diffstat (limited to 'notebook/templates/author.html')
-rw-r--r-- | notebook/templates/author.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/notebook/templates/author.html b/notebook/templates/author.html index 8c18a4c..624ac82 100644 --- a/notebook/templates/author.html +++ b/notebook/templates/author.html @@ -1,2 +1,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 %}
\ No newline at end of file |