members.lumbung.space/members_lumbung_space/templates/base.html

43 lines
1.6 KiB
HTML

<!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" %}
<link href="{{ url_for('static', path='css/default.css') }}" rel="stylesheet">
{% elif request.app.state.theme == "lumbung" %}
<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>
{% endif %}
<title>members.lumbung.space</title>
<link rel="icon" type="image/x-icon" href="{{ url_for('static', path='favicon.ico') }}">
{% endblock %}
</head>
<body>
<div id="not-footer">
<div class="container is-max-desktop">
<div id="content">{% block content %}{% endblock %}</div>
</div>
</div>
<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>
</body>
</html>