mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-06 09:34:13 +01:00
16 lines
840 B
Twig
16 lines
840 B
Twig
{% apply spaceless %}
|
|
<div id="{{ oUIBlock.GetId() }}" class="ibo-title {% if oUIBlock.HasIcon() %}ibo-has-icon{% endif %}{% if oUIBlock.IsHidden() %} ibo-is-hidden{% endif %}">
|
|
{% if oUIBlock.HasIcon() %}
|
|
<div {% if oUIBlock.IsMedallion %}class="ibo-title--medallion"{% endif %}>
|
|
<img class="ibo-title--icon ibo-title--icon--must-{{ oUIBlock.GetIconCoverMethod() }}" src="{{ oUIBlock.GetIconUrl() }}">
|
|
</div>
|
|
{% endif %}
|
|
<div class="ibo-title--content">
|
|
{% block iboPageTitleText %}
|
|
<h{{ oUIBlock.GetLevel() }} class="ibo-title--text title is-size-{{ oUIBlock.GetLevel() + 2 }}">
|
|
{{ oUIBlock.GetTitle()|raw }}
|
|
</h{{ oUIBlock.GetLevel() }}>
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% endapply %} |