Roxie Gibson
d6b96f6fd5
All checks were successful
continuous-integration/drone/push Build is passing
42 lines
1.5 KiB
HTML
42 lines
1.5 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>{% block title %}{% endblock %}</title>
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div id="not-footer">
|
|
<div class="container">
|
|
<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>
|