forgotten opengraph tags
This commit is contained in:
parent
9eb91aaf66
commit
5611978f57
2 changed files with 17 additions and 1 deletions
|
@ -9,7 +9,14 @@
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="{% static "main.css" %}">
|
<link rel="stylesheet" type="text/css" href="{% static "main.css" %}">
|
||||||
<link rel="icon" type="image/png" href="{% static "favicon.png" %}">
|
<link rel="icon" type="image/png" href="{% static "favicon.png" %}">
|
||||||
{% block meta-og %}{% endblock %}
|
{% block meta-og %}
|
||||||
|
<title>The /-\ pile</title>
|
||||||
|
<meta property="og:title" content="The /-\ Pile"/>
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property="og:url" content="https://pile.sdbs.cz/"/>
|
||||||
|
<meta property="og:description"
|
||||||
|
content="This is where we upload the stuff we consider important to the larger conceptual and thematic landscape of what we do: confronting apathy, inter-subjectivity, the human right to self-determination, counter-culture and such..."/>
|
||||||
|
{% endblock %}
|
||||||
<meta property="og:image" content="{% static "favicon.png" %}"/>
|
<meta property="og:image" content="{% static "favicon.png" %}"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{% extends "front_base.html" %}
|
{% extends "front_base.html" %}
|
||||||
|
|
||||||
|
{% block title %}: Filed under "{{ tag.name }}"{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% if tag %}
|
{% if tag %}
|
||||||
<div class="text tag-text">
|
<div class="text tag-text">
|
||||||
|
@ -19,4 +21,11 @@
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block meta-og %}
|
||||||
|
<meta property="og:title" content="The /-\ Pile: Documents under "{{ tag.name }}""/>
|
||||||
|
<meta property="og:url" content="{% url "pile:tag" tag.id %}"/>
|
||||||
|
<meta property="og:description" content="{{ tag.description }}"/>
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
{% endblock %}
|
{% endblock %}
|
Loading…
Reference in a new issue