refactor: content inner header as template to be reusable

This commit is contained in:
2024-11-21 10:17:09 -03:00
parent f3f4912e41
commit d7e5968fb8
4 changed files with 28 additions and 23 deletions

View File

@@ -0,0 +1,10 @@
{% macro inner_header(title) %}
<div class="row">
{% include 'message.html' %}
<div class="col-2 inner-header-logo">
</div>
<div class="col-10 gx-md-4 gx-0">
<h1 class="inner-header-title">{{title}}</h1>
</div>
</div>
{% endmacro %}