2022-11-11 19:12:48 +00:00
|
|
|
<!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">
|
2023-12-07 21:13:54 +00:00
|
|
|
<link rel="stylesheet" href="/oauth_dropins_static/bootstrap.min.css" />
|
2023-01-12 04:32:41 +00:00
|
|
|
<link rel="stylesheet" href="/oauth_dropins_static/util.css" type="text/css" />
|
2022-11-11 19:12:48 +00:00
|
|
|
<link rel="stylesheet" href="/static/style.css" type="text/css" />
|
|
|
|
<link rel="webmention" href="/webmention" />
|
2022-11-19 06:30:07 +00:00
|
|
|
<!-- 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>
|
2022-11-11 19:12:48 +00:00
|
|
|
</head>
|
|
|
|
|
2023-12-12 20:07:54 +00:00
|
|
|
<body id="{{ body_id }}">
|
2022-11-19 06:30:07 +00:00
|
|
|
{% 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 %}
|
|
|
|
|
2023-12-15 20:33:51 +00:00
|
|
|
<main class="tp-main lead
|
|
|
|
{% if body_id == 'front' %} container-fluid
|
|
|
|
{% else %} container
|
|
|
|
{% endif %}">
|
2022-11-11 19:12:48 +00:00
|
|
|
|
2023-12-12 20:07:54 +00:00
|
|
|
<div id="header" class="row">
|
2023-12-22 19:50:30 +00:00
|
|
|
<p id="logo">
|
|
|
|
<a href="/">
|
|
|
|
<img id="logo-img" src="/static/bridgy_logo_with_alpha.png" />
|
|
|
|
<span class="big">Bridgy Fed</span>
|
|
|
|
</a>
|
|
|
|
</p>
|
2022-11-11 19:12:48 +00:00
|
|
|
|
2023-12-22 19:50:30 +00:00
|
|
|
<p class="header-links">
|
2023-12-13 23:52:39 +00:00
|
|
|
<a href="/docs">Docs</a>
|
|
|
|
<a href="https://snarfed.org/?s=%22bridgy+fed%22">News</a>
|
|
|
|
<a href="mailto:feedback@brid.gy">Feedback</a>
|
|
|
|
<a href="https://github.com/snarfed/bridgy-fed">Source</a>
|
2023-12-22 19:50:30 +00:00
|
|
|
</p>
|
2022-11-11 19:12:48 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2023-12-13 23:52:39 +00:00
|
|
|
<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="mailto:feedback@brid.gy">Feedback</a>
|
|
|
|
<a href="https://github.com/snarfed/bridgy-fed">Source</a>
|
|
|
|
</p>
|
2022-11-11 19:12:48 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<script src="/static/fragmention.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|