Files
praxis-page/templates/macros/section_title.html
T

15 lines
382 B
HTML

{% macro section_title(title, anchor="") %}
<section class="section-title">
<div class="container text-center">
{%- if anchor %}
<div class="anchor" id="{{ anchor }}">
<h2>{{ title }}</h2>
</div>
{%- else %}
<h2>{{ title }}</h2>
{%- endif %}
<span class="bordered-icon"><i class="fa fa-circle-thin"></i></span>
</div>
</section>
{% endmacro %}