forked from rDrama/rDrama
1
0
Fork 0
retarD/files/templates/sidebar.html

20 lines
488 B
HTML
Raw Normal View History

2021-12-30 05:27:22 +00:00
{% extends "default.html" %}
{% block title %}
2022-01-13 23:39:39 +00:00
<title>{{SITE_NAME}} Sidebar</title>
2021-12-30 05:27:22 +00:00
{% endblock %}
{% block content %}
<pre>
</pre>
<div class="mx-4 mt-2 mb-6">
<h1 class="text-muted text-uppercase">{{'SITE_NAME'|app_config}} Sidebar{% if v and v.admin_level > 2 %} <a href="/admin/sidebar" class="btn btn-link text-lowercase"><i class="far fa-fw fa-pencil"></i> Edit sidebar</a>{% endif %}</h5>
<div id="sidebar" class="my-3">
{{ sidebar | safe }}
</div>
</div>
{% endblock %}