summaryrefslogtreecommitdiff
path: root/iss/templates/base.html
blob: f50aaac53d71b36116667a30ff983ee40e6c331a (plain)
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
35
36
<!doctype html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>ISS Predictions | ISS.guru</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="ISS predictions for overhead passes">
    <meta name="keywords" content="ISS, international space station, passes, predictions, overhead, amateur radio">
    <link rel="stylesheet" href="/static/css/tachyons.min.css">
    <link rel="stylesheet" href="/static/css/style.css">
    <link rel="shortcut icon" href="/static/img/favicon.ico" />
    <script src="https://cdn.usefathom.com/script.js" data-site="BUVXMLRG" defer></script>
    {% block extrahead %}
    {% endblock %}
</head>

<body class="bg-near-black near-white">
    <div class="pa4 mw8 center">
        <a href="/" class="no-underline dim">
            <h1 class="f1 moon-gray">ISS Pass Predictions</h1>
        </a>
        <p class="light-red">Upcoming passes of the <a href="https://en.wikipedia.org/wiki/International_Space_Station"
                class="link red dim">International Space Station</a> at your location over the next 10 days.</p>

        {% block content %}
        {% endblock %}

        <hr class="mt5 dark-gray">
        <p class="near-white">Created by <a href="https://yuv.al/" class="link light-blue dim">Yuval Adam</a>, source
            code
            available on <a href="https://github.com/yuvadm/iss.guru" class="link light-blue dim">Github</a>.</p>
    </div>
</body>

</html>