rDrama/files/templates/sidebar.html

20 lines
330 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">
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-01-14 00:14:55 +00:00
{% include "sidebar_" + SITE_NAME + ".html" %}
2021-12-30 05:27:22 +00:00
</div>
</div>
{% endblock %}