firefly-iii/resources/views/partials/page-header.twig

15 lines
361 B
Twig
Raw Normal View History

2015-06-19 13:59:14 -05:00
<h1>
{% if mainTitleIcon %}
<i class="hidden-xs fa {{ mainTitleIcon }}"></i>
{% endif %}
{{ title }}
{% if subTitle %}
<small id="subTitle">
{% if subTitleIcon %}
<i class="hidden-xs fa {{ subTitleIcon }}"></i>
{% endif %}
{{ subTitle }}
</small>
{% endif %}
2015-06-23 12:07:37 -05:00
</h1>