diff options
author | quack1 <alexandre.deloup@gmail.com> | 2013-05-11 23:36:22 +0200 |
---|---|---|
committer | quack1 <alexandre.deloup@gmail.com> | 2013-05-11 23:36:22 +0200 |
commit | 498c22cc41261f229f181b76aabc613d9472f91e (patch) | |
tree | b3025be087410b6ef9fd20f4ac5f0818fae6e4c4 /notebook/templates/author.html | |
parent | 2f0f4d36a28c99facce979e0ab41635a4ddca9b9 (diff) | |
download | pelican-themes-498c22cc41261f229f181b76aabc613d9472f91e.tar.gz |
Some improvements
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 |