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">&times;</span>
        </button>
      </div>
    {% endif %}
    {% assign show_info_bar = false %}
  {% endfor %}
{% endif %}

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
jekyll-theme-conference-2.5.4 _includes/partials/info_bar.html
jekyll-theme-conference-2.5.3 _includes/partials/info_bar.html
jekyll-theme-conference-2.5.2 _includes/partials/info_bar.html
jekyll-theme-conference-2.5.1 _includes/partials/info_bar.html
jekyll-theme-conference-2.5.0 _includes/partials/info_bar.html
jekyll-theme-conference-2.4.1 _includes/partials/info_bar.html
jekyll-theme-conference-2.4.0 _includes/partials/info_bar.html
jekyll-theme-conference-2.3.1 _includes/partials/info_bar.html
jekyll-theme-conference-2.2.0 _includes/partials/info_bar.html
jekyll-theme-conference-2.3.0 _includes/partials/info_bar.html
jekyll-theme-conference-2.1.1 _includes/partials/info_bar.html
jekyll-theme-conference-2.1.0 _includes/partials/info_bar.html