|
@@ -33,6 +33,15 @@
|
|
|
{% endblock og-title %}
|
|
|
|
|
|
|
|
|
+{% block twitter-title %}
|
|
|
+ {% if THREADS_ON_INDEX %}
|
|
|
+ {% trans "Categories" %}
|
|
|
+ {% else %}
|
|
|
+ {{ settings.index_title|default:settings.forum_name }}
|
|
|
+ {% endif %}
|
|
|
+{% endblock twitter-title %}
|
|
|
+
|
|
|
+
|
|
|
{% block og-description %}
|
|
|
{% if not THREADS_ON_INDEX and settings.index_meta_description %}
|
|
|
{{ settings.index_meta_description }}
|
|
@@ -46,7 +55,21 @@
|
|
|
{% endblock og-description %}
|
|
|
|
|
|
|
|
|
+{% block twitter-description %}
|
|
|
+ {% if not THREADS_ON_INDEX and settings.index_meta_description %}
|
|
|
+ {{ settings.index_meta_description }}
|
|
|
+ {% else %}
|
|
|
+ {% blocktrans trimmed count categories=categories|length with forum_name=settings.forum_name %}
|
|
|
+ There is {{ categories }} main category currenty available on the {{ forum_name }}.
|
|
|
+ {% plural %}
|
|
|
+ There are {{ categories }} main categories currenty available on the {{ forum_name }}.
|
|
|
+ {% endblocktrans %}
|
|
|
+ {% endif %}
|
|
|
+{% endblock twitter-description %}
|
|
|
+
|
|
|
+
|
|
|
{% block og-url %}{% absoluteurl request_path %}{% endblock %}
|
|
|
+{% block twitter-url %}{% absoluteurl request_path %}{% endblock %}
|
|
|
|
|
|
|
|
|
{% block content %}
|