Repository URL to install this package:
|
Version:
2.0.2 ▾
|
{% if open is not empty %}
<button class="browser-info__open" id="browser-info-open">
{{ open }}
</button>
{% endif %}
<section{{ section_attributes.setAttribute('id', 'browser-info').addClass('browser-info') }}>
<div class="browser-info__inner">
<div class="browser-info__text">
{% if title %}
<h3 class="browser-info__headline">{{ title }}</h3>
{% endif %}
{% if body %}
<div class="browser-info__body">{{ body.value | raw }}</div>
{% endif %}
{% if close is not empty %}
<button class="browser-info__close button" id="browser-info-close">
{{ close }}
</button>
{% endif %}
</div>
</div>
</section>