File: layout.html

package info (click to toggle)
skyfield 1.53%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,688 kB
  • sloc: python: 14,800; makefile: 278; sh: 41
file content (34 lines) | stat: -rw-r--r-- 813 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "!layout.html" %}
{% block htmltitle %}
    <title>{{ title|striptags|e }} — {% if title != 'Skyfield' %}Skyfield {% endif %}documentation</title>
{% endblock %}

{% block relbar1 %}{% endblock %}

{% block relbar2 %}{% endblock %}

{% block sidebar1 %}{% endblock %}

{% block sidebar2 %}{% endblock %}

{% block footer %}{% endblock %}

{%- block css %}
    <link rel="stylesheet" type="text/css" href="_static/style.css">
{%- endblock %}

{% block body %}
    {% if title != 'Skyfield' %}
    <p class="motto">
      <b>Skyfield:</b>
      <a href=".">Home</a>
      <a href="toc.html">Table of Contents</a>
      <a href="installation.html#changelog">Changelog</a>
      <a href="api.html">API Reference</a>
    </p>
    {% endif %}
    {{ super() }}
{% endblock %}