cl/cl-theme/templates/index.html
2019-11-21 11:47:15 -05:00

37 lines
1.5 KiB
HTML

{% extends "base.html" %}
{% block head %}
{% block title %}
<title>{{ SITENAME }}{% if articles_page.number != 1 %} | {{ _('Página') }} {{ articles_page.number }}{% endif %}</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 %}
<!-- Meta Index -->
<meta name="author" content="{{ AUTHOR }}" />
<meta name="description" content="{{ SITENAME }} &ndash; {{ SITESUBTITLE }}">
<!-- OpenGraph -->
<meta property="og:title" content="{{ SITENAME }}" />
<meta property="og:description" content="{{ SITESUBTITLE }}" />
<meta property="og:url" content="{{ SITEURL }}" />
<meta property="og:image" content="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/favicon/cl-favicon-96x96.png"/>
<meta property="og:type" content="blog"/>
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{{ SITENAME }}">
<meta name="twitter:description" content="{{ SITESUBTITLE }}">
<meta name="twitter:image" content="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/favicon/cl-favicon-96x96.png">
{% endblock %}
{% endblock %}
{% block sitename %}
<h1 class="title is-1 is-spaced">{{ SITENAME }}</h1>
<p class="subtitle is-4">{{ SITESUBTITLE }}</p>
{% endblock %}