Sha256: bab0f70906810e3460d27e6951c53eff1dd92f6a0b380d482eae685ea6589d70
Contents?: true
Size: 1.29 KB
Versions: 24
Compression:
Stored size: 1.29 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
24 entries across 24 versions & 2 rubygems