fixed broken isotope

This commit is contained in:
Kiritan Flux 2017-01-23 10:45:54 +01:00
parent 3533daf3b6
commit e8c2fd545f

View file

@ -38,7 +38,7 @@ permalink: /video/
{% endfor %} {% endfor %}
</div> </div>
<div id="video-roster container-fluid"> <div id="video-roster" class="container-fluid">
{% for post in site.posts %} {% for post in site.posts %}
{% for talk in post.talks %} {% for talk in post.talks %}
@ -47,7 +47,7 @@ permalink: /video/
{% if talk.topics %} {% if talk.topics %}
{% assign tags = (talk.topics | split:",") %} {% assign tags = (talk.topics | split:",") %}
{% endif %} {% endif %}
<div class="videobox {% for tag in tags | uniq %}{{tag | strip | replace: " ", "-" | downcase}} {% endfor %}{{post.location | strip | replace: " ", "-" | downcase}} col-sm-3 embed-responsive embed-responsive-16by9" vimeo="{{vimeo_id}}"> <div class="videobox {% for tag in tags | uniq %}{{tag | strip | replace: " ", "-" | downcase}} {% endfor %}{{post.location | strip | replace: " ", "-" | downcase}} col-sm-3" vimeo="{{vimeo_id}}">
<div class="video-title">{{talk.artist}}</div> <div class="video-title">{{talk.artist}}</div>
<div class="playbutton"></div> <div class="playbutton"></div>
<div class="video-description"><h3>{{talk.title}}</h3><p><span class="video-session">#{{ post.number }}</span>: <span class="video-artist">{{talk.artist}}</span> / {{talk.artist_website}} {{talk.description}}</p></div> <div class="video-description"><h3>{{talk.title}}</h3><p><span class="video-session">#{{ post.number }}</span>: <span class="video-artist">{{talk.artist}}</span> / {{talk.artist_website}} {{talk.description}}</p></div>
@ -134,7 +134,6 @@ permalink: /video/
}); });
$('#video-roster').isotope({ $('#video-roster').isotope({
// options
itemSelector: '.videobox' itemSelector: '.videobox'
}); });
// init Isotope // init Isotope