rDrama/files/templates/sidebar.html

22 lines
368 B
HTML

{% extends "default.html" %}
{% block title %}
<title>{{SITE_NAME}} Sidebar</title>
{% endblock %}
{% block content %}
<pre>
</pre>
<div class="mx-4 mt-2 mb-6">
<h1 class="text-muted text-uppercase">Sidebar</h5>
<div id="sidebar" class="my-3">
{% if has_sidebar %}
{% include "sidebar_" + SITE_NAME + ".html" %}
{% endif %}
</div>
</div>
{% endblock %}