Sha256: cf816b2dd2f1fdd5e785709150169f8ecb156052975f4c30f8fedfec63801c0c

Contents?: true

Size: 1.71 KB

Versions: 2

Compression:

Stored size: 1.71 KB

Contents

<div class="modal fade" id="stream-modal" tabindex="-1" role="dialog" aria-labelledby="link-modal-label" aria-hidden="true">
  <div class="modal-dialog modal-dialog-centered modal-lg" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title">
          {{ site.data.lang[site.conference.lang].live.streaming | default: "Live Stream" }}
        </h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body embed-responsive embed-responsive-16by9">
        <iframe class="embed-responsive-item" src="" allowfullscreen></iframe>
        <div id="stream-placeholder" class="embed-responsive-item d-none justify-content-center align-items-center">
          <div></div>
        </div>
      </div>
      <div class="modal-footer justify-content-around">
        {% for r in site.data.program %}
          {% assign room = site.rooms | where: 'name', r.room | first %}

          <a id="stream-button{{ forloop.index }}" href="#" class="btn btn-outline-primary d-none d-sm-inline {% unless room.live %}disabled{% endunless %}" role="button" data-room="{{ room.name }}">
            {{ room.name }}
          </a>
        {% endfor %}
        <div class="form-group w-100 d-block d-sm-none">
          <select class="form-control" id="stream-select">
            {% for r in site.data.program %}
              {% assign room = site.rooms | where: 'name', r.room | first %}
              <option {% unless room.live %}disabled{% endunless %}>{{ room.name }}</option>
            {% endfor %}
          </select>
        </div>
      </div>
    </div>
  </div>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-theme-conference-2.5.2 _includes/partials/live-modal.html
jekyll-theme-conference-2.5.1 _includes/partials/live-modal.html