You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.0 KiB
25 lines
1.0 KiB
{% autoescape false %}
|
|
<div class="card">
|
|
<div class="card-body p-3">
|
|
<section id="section-intro">
|
|
<div id="{{ intro.name }}" class="section-intro-content">
|
|
{% if intro.text !='' %}
|
|
{{ intro.text }}
|
|
{% else %}
|
|
{{ intro.help }}
|
|
{% endif %}
|
|
</div>
|
|
<div class="section-intro-toolbar float-right">
|
|
<div class="btn-group btn-group-sm" role="group" aria-label="">
|
|
{% for item in toolbar %}
|
|
<a href="{{ item.url }}" onclick="{{ (item.onclick!='')? item.onclick : '' }}"
|
|
title="{{ item.name }}" class="btn btn-light">
|
|
<i class="{{ item.icon }}"></i>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
{% endautoescape %} |