initial commit

This commit is contained in:
2019-01-11 22:16:01 +03:00
commit 24c5f2fcf6
312 changed files with 186972 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{% extends 'cabinet/_base.html' %}
{% block page %}
<section class="body">
{% include 'cabinet/_includes/header.html' %}
<div class="inner-wrapper">
{% include 'cabinet/_includes/sidebar.html' %}
<section role="main" class="content-body">
<header class="page-header">
<h2>{{ title }}</h2>
<div class="right-wrapper text-right">
<ol class="breadcrumbs">
<li><a href="{% url 'cabinet:index' %}"><i class="fas fa-home"></i></a>
{% block breadcrumbs %}{% endblock %}
</ol>
{# <a class="sidebar-right-toggle" data-open="sidebar-right"><i class="fa fa-chevron-left"></i></a>#}
</div>
</header>
{% block content %}{% endblock %}
</section>
</div>
</section>
{% endblock %}