blob: b4ffe6934f0325d1c5316bab2c770d75c95289a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% 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 in {{ category }}">
<!-- Facebook Meta Data -->
<meta property="og:title" content="{{ SITENAME }} || {{ category }}"/>
<meta property="og:description" content="Articles in {{ category }}"/>
<meta property="og:image" content="{{ AVATAR }}"/>
{% endblock head %}
{% block title %}{{ SITENAME }} - {{ category }}{% endblock %}
{% block heading %}
<h2>Category: <i>{{ category }}</i></h2>
{% endblock %}
|