-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathbase.html
70 lines (62 loc) · 2.39 KB
/
base.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>{% block title %}Bridgy Fed{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="mobile-web-app-capable" content="yes"/>
<link rel="shortcut icon" sizes="128x128" href="https://brid.gy/static/bridgy_logo_128.jpg">
<link rel="apple-touch-icon-precomposed" sizes="128x128" href="https://brid.gy/static/bridgy_logo_128.jpg">
<!-- 32x32 last so that browsers prefer it -->
<link rel="shortcut icon" sizes="32x32" href="https://brid.gy/static/favicon.png">
<link rel="apple-touch-icon-precomposed" sizes="32x32" href="https://brid.gy/static/favicon.png">
<link rel="stylesheet" href="/oauth_dropins_static/bootstrap.min.css" />
<link rel="stylesheet" href="/oauth_dropins_static/util.css" type="text/css" />
<link rel="stylesheet" href="/static/style.css" type="text/css" />
<link rel="webmention" href="/webmention" />
<!-- Not async because it adds a DOMContentLoaded event listener, which may
-- happen before an async script loads. -->
<script src="/oauth_dropins_static/util.js"></script>
</head>
<body id="{{ body_id }}">
{% with messages = get_flashed_messages() %}
{% if messages %}
<div id="messages">
{% for message in messages %}
<p class="message shadow">{{ message|safe }}</p>
{% endfor %}
</div>
{% endif %}
{% endwith %}
<main class="tp-main lead
{% if body_id == 'front' %} container-fluid
{% else %} container
{% endif %}">
<div id="header" class="row">
<p id="logo">
<a href="/">
<img id="logo-img" src="/static/bridgy_logo_with_alpha.png" />
<span class="big">Bridgy Fed</span>
</a>
</p>
<p class="header-links">
<a href="/docs">Docs</a>
<a href="https://snarfed.org/?s=%22bridgy+fed%22">News</a>
<a href="https://github.com/snarfed/bridgy-fed">Code</a>
<a href="https://github.com/snarfed/bridgy-fed/issues">Issues</a>
</p>
</div>
{% block content %}
{% endblock %}
<div id="footer" class="row">
<p class="header-links">
<a href="/docs">Docs</a>
<a href="https://snarfed.org/?s=%22bridgy+fed%22">News</a>
<a href="https://github.com/snarfed/bridgy-fed">Code</a>
<a href="https://github.com/snarfed/bridgy-fed/issues">Issues</a>
</p>
</div>
</main>
<script src="/static/fragmention.js"></script>
</body>
</html>