Sha256: 23fd53731819a388ec779204fad718b94938fa3ac3561c8ca6191ef985ddf854
Contents?: true
Size: 1.25 KB
Versions: 12
Compression:
Stored size: 1.25 KB
Contents
{% if site.conference.show_errors %} {% include partials/checks.html %} {% if errors.size > 0 %} {% for error in errors %} <div class="alert alert-danger fade show" role="alert"> <h5 class="alert-heading">There was an error when generating when generating the site!</h5> {{ error | markdownify }} </div> {% endfor %} {% endif %} {% endif %} {% if site.conference.info_bars.size > 0 %} {% for info_bar in site.conference.info_bars %} {% if page.url == "/" and info_bar.pages_only != true %} {% assign show_info_bar = true %} {% endif %} {% if page.url != "/" and info_bar.main_only != true %} {% assign show_info_bar = true %} {% endif %} {% if show_info_bar %} <div class="alert alert-{{ info_bar.color }} alert-dismissible fade show" role="alert"> {% if info_bar.title %} <h4 class="alert-heading">{{ info_bar.title }}</h4> {% endif %} {{ info_bar.text | markdownify }} <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> {% endif %} {% assign show_info_bar = false %} {% endfor %} {% endif %}
Version data entries
12 entries across 12 versions & 1 rubygems