diff options
Diffstat (limited to 'notebook/templates/index.html')
-rw-r--r-- | notebook/templates/index.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/notebook/templates/index.html b/notebook/templates/index.html index 80e8897..fced918 100644 --- a/notebook/templates/index.html +++ b/notebook/templates/index.html @@ -1,4 +1,16 @@ {% extends "base.html" %} +{% block head %} +{{ super() }} +<meta name="twitter:creator" content="{{ TWITTER_USERNAME }}"> +<meta name="twitter:url" content="{{ SITEURL }}"> +<meta name="twitter:title" content="{{ SITENAME }}"> +<meta name="twitter:description" content="{{ SIDEBAR_DIGEST }}"> + +<!-- Facebook Meta Data --> +<meta property="og:title" content="{{ SITENAME }}" /> +<meta property="og:description" content="{{ SIDEBAR_DIGEST }}" /> +<meta property="og:image" content="{{ AVATAR }}" /> +{% endblock head %} {% block content_title %}{% endblock %} {% block content %} {% if articles %} |