12 lines
335 B
HTML
12 lines
335 B
HTML
{% if blog_title and not (form_dict.txt or form_dict.by) %}
|
|
<div class="page-hero border-bottom">
|
|
<div class="container">
|
|
<h1 class="page-title">
|
|
{{ blog_title }}
|
|
</h1>
|
|
{% if blog_introduction -%}
|
|
<p class="blog-introduction">{{ blog_introduction }}</p>
|
|
{%- endif %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|