django/templates/main.html

24 lines
847 B
HTML
Executable File

{% extends "partials/base.html" %}
{% load static %}
{% block title %}Starter Page{% endblock title %}
{% block content %}
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
<div class="main-content">
<div class="page-content">
<div class="container-fluid">
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Pages" title="Starter" %}
{% endblock pagetitle %}
</div>
<!-- container-fluid -->
</div>
<!-- End Page-content -->
</div>
<!-- end main content-->
{% endblock content %}