rDrama/files/templates/sidebar.html

19 lines
354 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 %}
<div class="mx-4 mt-4 mb-6">
2022-02-14 16:38:24 +00:00
<h1 class="text-muted text-uppercase">Sidebar</h5>
2021-12-30 05:27:22 +00:00
<div id="sidebar" class="my-3">
2022-06-28 06:17:21 +00:00
{% if has_sidebar %}
{% include "sidebar_" + SITE_NAME + ".html" %}
{% endif %}
2021-12-30 05:27:22 +00:00
</div>
</div>
{% endblock %}