1
0
Fork 0
forked from github/pelican

Add hreflang attribute to default themes

This commit is contained in:
Jorge Maldonado Ventura 2018-07-05 00:26:50 +02:00
commit d1d1cccdad
39 changed files with 104 additions and 37 deletions

View file

@ -1,6 +1,14 @@
{% extends "base.html" %}
{% block html_lang %}{{ page.lang }}{% endblock %}
{% block title %}{{ page.title }}{% endblock %}
{% block extra_head %}
{% import 'translations.html' as translations with context %}
{% if translations.entry_hreflang(page) %}
{{ translations.entry_hreflang(page) }}
{% endif %}
{% endblock %}
{% block content %}
<section id="content" class="body">
<h1 class="entry-title">{{ page.title }}</h1>