2022-01-10 12:34:17 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
{% block head %}
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{% if request.app.state.theme == "default" %}
|
2022-01-12 15:00:12 +00:00
|
|
|
<link href="{{ url_for('static', path='css/default.css') }}" rel="stylesheet">
|
2022-01-10 12:34:17 +00:00
|
|
|
{% elif request.app.state.theme == "lumbung" %}
|
2022-01-12 15:00:12 +00:00
|
|
|
<link href="{{ url_for('static', path='css/lumbung.css') }}" rel="stylesheet">
|
|
|
|
<link href="{{ url_for('static', path='css/bulma.css') }}" rel="stylesheet">
|
|
|
|
<script src="{{ url_for('static', path='js/navbar_hamburger_menu.js') }}"></script>
|
2022-01-10 12:34:17 +00:00
|
|
|
{% endif %}
|
2022-01-13 14:52:52 +00:00
|
|
|
<title>members.lumbung.space</title>
|
2022-01-17 12:09:06 +00:00
|
|
|
<link rel="icon" type="image/x-icon" href="{{ url_for('static', path='favicon.ico') }}">
|
2022-01-10 12:34:17 +00:00
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-01-13 09:51:37 +00:00
|
|
|
<div id="not-footer">
|
|
|
|
<div class="container">
|
|
|
|
<div id="content">{% block content %}{% endblock %}</div>
|
|
|
|
</div>
|
2022-01-13 08:25:39 +00:00
|
|
|
</div>
|
2022-01-13 09:51:37 +00:00
|
|
|
|
|
|
|
<footer class="footer">
|
|
|
|
<div class="content footer-links">
|
|
|
|
<span>
|
|
|
|
<a href="https://panduan.lumbung.space/share/684ea8a2-bc47-4111-acf2-f88a200b640f">Imprint</a>
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
<a href="https://panduan.lumbung.space/share/8a742222-2561-4d67-a9f1-6c7c4fe8bead">Privacy Policy</a>
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
<a href="https://panduan.lumbung.space/share/272026ff-57fd-4894-8d68-58606c77044c">FAQ</a>
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
<a href="https://panduan.lumbung.space/share/ece8e392-7b21-4379-bd82-a11e06ebf1fb">Community Guidelines</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</footer>
|
2022-01-10 12:34:17 +00:00
|
|
|
</body>
|
|
|
|
</html>
|