0% found this document useful (0 votes)
4 views1 page

Extends

The document is a template for an Admin Panel webpage, featuring a header with a background image and a subheading about managing posts and blogs. It includes a main content section welcoming users to the Admin Panel. The layout is structured using Bootstrap classes for responsive design.

Uploaded by

gauswamisarita
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Extends

The document is a template for an Admin Panel webpage, featuring a header with a background image and a subheading about managing posts and blogs. It includes a main content section welcoming users to the Admin Panel. The layout is structured using Bootstrap classes for responsive design.

Uploaded by

gauswamisarita
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

{% extends "layout.

html" %}
{% block body%}
<!-- Page Header-->
<header class="masthead" style="background-image:
url('assets/img/[Link]')">
<div class="container position-relative px-4 px-lg-5">
<div class="row gx-4 gx-lg-5 justify-content-center">
<div class="col-md-10 col-lg-8 col-xl-7">
<div class="page-heading">
<h1>Admin Panel/h1>
<span class="subheading">For managing posts
and blogs</span>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content-->
<main class="mb-4">
<div class="container px-4 px-lg-5">
<div class="row gx-4 gx-lg-5 justify-content-center">
<div class="col-md-10 col-lg-8 col-xl-7">
<h1>Welcome to Admin Panel</h1>
</div>
</div>
</div>
</main>
<!-- Footer-->
{% endblock %}

You might also like