Files
benchcoach-django/templates/base.html
2021-12-31 14:41:28 -06:00

41 lines
993 B
HTML

<!DOCTYPE html>
<html lang="en"> {% load static %}
<head>
<title>{% block title %}Title{% endblock %}</title>
{% include 'base_layout.html' %}
</head>
<body class="bg-light">
<header class="min-vw-100">
<div>
{% block navbar %}
{% include 'navbar.html' %}
{% endblock %}
</div>
</header>
<div class="d-inline-flex min-vw-100 min-vh-100" style="padding-top:3rem;">
<div id="sidebar" class="">
{% block sidebar %}
{% include 'sidebar.html' %}
{% endblock %}
</div>
<div class="w-100 m-0">
<div class="bg-white border border-bottom">
<h1 class="m-2">{% block page_heading %}{% endblock %}</h1>
<h6 class="m-2 text-muted">{% block page_subheading %}{% endblock %}</h6>
{% block header %}
{% endblock %}
</div>
<div class="container-fluid">
{% block content %}{% endblock %}
</div>
</div>
</div>
</body>
</html>