mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
20 lines
950 B
HTML
20 lines
950 B
HTML
{% load static %}
|
|
|
|
{% block breadcrumb %}
|
|
<div class="sub-header-container">
|
|
<header class="header navbar navbar-expand-sm">
|
|
<a href="javascript:void(0);" class="sidebarCollapse" data-placement="bottom"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu"><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg></a>
|
|
|
|
<ul class="navbar-nav flex-row">
|
|
<li>
|
|
<div class="page-header">
|
|
<div class="page-title">
|
|
{% block breadcrumb_title %}<h3>This is headline</h3>{% endblock breadcrumb_title %}
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</header>
|
|
</div>
|
|
{% endblock breadcrumb %}
|