2017-08-26 13:49:54 +02:00
|
|
|
{% extends "!layout.html" %}
|
2018-04-06 19:24:43 +02:00
|
|
|
{% block htmltitle %}
|
|
|
|
{% if pagename == "index" %}
|
|
|
|
<title>{{ title|striptags|e }}</title>
|
|
|
|
{% else %}
|
|
|
|
<title>{{ title|striptags|e }}{{ titlesuffix }}</title>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2017-08-26 13:49:54 +02:00
|
|
|
{% block extrahead %}
|
2018-03-24 21:46:21 +01:00
|
|
|
{{ super() }}
|
2018-03-28 19:39:58 +02:00
|
|
|
<meta name="google-site-verification" content="FNUsDdkOJM9obm9QEdrNBVd9AtAzHzA-aaSMCUrS6C8" />
|
|
|
|
{% if pagename == "index" %}
|
|
|
|
<link rel="canonical" href="https://instaloader.github.io/" />
|
|
|
|
{% else %}
|
|
|
|
<link rel="canonical" href="https://instaloader.github.io/{{ pagename }}.html" />
|
|
|
|
{% endif %}
|
|
|
|
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
2017-08-26 13:49:54 +02:00
|
|
|
{% endblock %}
|