django/templates/main.html

24 lines
847 B
HTML
Raw Normal View History

2023-04-23 16:08:01 +00:00
{% 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 -->
2023-05-30 09:30:00 +00:00
2023-04-23 16:08:01 +00:00
</div>
<!-- end main content-->
{% endblock content %}