aboutsummaryrefslogtreecommitdiffstats
path: root/notebook/templates/category.html
blob: ccbbeab03b706445c4bfe0db1c2e0c8c30249e44 (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 }}/{{ category.url }}">
<meta name="twitter:title" content="{{ SITENAME }} ~ {{ category }}">
<meta name="twitter:description" content="Articles de {{ category }}">

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