2022-09-18 05:23:33 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
{% block head %}
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
|
|
<title>Untitled</title>
|
|
|
|
<meta name="description" content="">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='/css/all.min.css') }}" type="text/css">
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='/css/bootstrap.min.css') }}" type="text/css">
|
2022-09-18 15:56:48 +02:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='/css/lightbox.min.css') }}" type="text/css">
|
2022-09-18 05:23:33 +02:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='/css/style.css') }}" type="text/css">
|
2022-09-18 15:56:48 +02:00
|
|
|
<script src="{{ url_for('static', filename='/js/jquery-3.6.1.min.js') }}" crossorigin="anonymous"></script>
|
|
|
|
<script src="{{ url_for('static', filename='/js/bootstrap.bundle.min.js') }}" crossorigin="anonymous"></script>
|
|
|
|
<script src="{{ url_for('static', filename='/js/lightbox.min.js') }}" crossorigin="anonymous"></script>
|
|
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
2022-09-18 05:23:33 +02:00
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="row">
|
|
|
|
{% for message in get_flashed_messages() %}
|
|
|
|
<div class="alert">{{ message }}</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<li><a href="{{ url_for('index') }}">主页</a></li>
|
|
|
|
<li><a href="{{ url_for('settings') }}">设置</a></li>
|
|
|
|
<li><a href="{{ url_for('archive') }}">存档</a></li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
<footer>
|
|
|
|
<small><a href="https://git.southfox.me/southfox/mastodon-BDSM">Code</a></small>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|