File: layout.html

package info (click to toggle)
pooch 1.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 988 kB
  • sloc: python: 2,672; makefile: 93
file content (16 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{# Import the theme's layout. #}
{% extends "!layout.html" %}

{% block extrahead %}
    <!-- Plausible analytics for anonymous usage statistics -->
    <script defer data-domain="fatiando.org" src="https://plausible.io/js/plausible.js"></script>
{% endblock %}


{% block htmltitle %}
    {% if title == '' or 'no title' in title or title == 'Home' %}
        <title>{{ docstitle|striptags|e }}</title>
    {% else %}
        <title>{{ title|striptags|e }} | {{ docstitle|striptags|e }}</title>
    {% endif %}
{% endblock %}