Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
novicell/dds_browser_info / templates / browser-info.html.twig
Size: Mime:
{% 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>