aboutsummaryrefslogtreecommitdiffstats
path: root/libretube-theme/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'libretube-theme/templates/index.html')
-rw-r--r--libretube-theme/templates/index.html25
1 files changed, 23 insertions, 2 deletions
diff --git a/libretube-theme/templates/index.html b/libretube-theme/templates/index.html
index 659f7b4..8a1d5ad 100644
--- a/libretube-theme/templates/index.html
+++ b/libretube-theme/templates/index.html
@@ -1,15 +1,36 @@
{% extends "base.html" %}
-{% block extra_head %}
+{% block head %}
+ {% block title %}
+ <title>{% if articles_page.number != 1 %}{{ _('Página') }} {{ articles_page.number }} | {% endif %}{{ SITENAME }}</title>
+ {% endblock %}
{{ super() }}
{% if lang_siteurls and articles_page.number == 1 %}
{% for lang, url in lang_siteurls.items() %}
<link rel="alternate" hreflang="{{ lang }}" href="{{ url }}/">
{% endfor %}
{% endif %}
+
+ {% block seo %}
+ {% set SITE_DESCRIPTION = _('Videoteca de software libre brindando avance tecnológico') %}
+ <!-- Meta Index -->
+ <meta name="description" content="{{ SITE_DESCRIPTION }}">
+
+ <!-- OpenGraph -->
+ <meta property="og:title" content="{{ SITENAME }}">
+ <meta property="og:description" content="{{ SITE_DESCRIPTION }}">
+ <meta property="og:url" content="{{ SITEURL }}">
+ <meta property="og:image" content="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/favicon/favicon-96x96.png"/>
+ <meta property="og:type" content="website">
+
+ <!-- Twitter -->
+ <meta name="twitter:card" content="summary_large_image"/>
+ <meta name="twitter:title" content="{{ SITENAME }}"/>
+ <meta name="twitter:description" content="{{ SITE_DESCRIPTION }}"/>
+ <meta name="twitter:image" content="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/favicon/favicon-96x96.png"/>
+ {% endblock %}
{% endblock %}
-{% block title %}{{ SITENAME }}{% if articles_page.number != 1 %} | Page {{ articles_page.number }}{% endif %}{% endblock %}
{% block sitename %}
<h1 class="title is-1 is-spaced">{{ SITENAME }}</h1>
<h4 class="subtitle is-4">{{ SITESUBTITLE }}</h4>