Fixed menu on mobile devices
Added more background pics Now embedding vimeo players on evetn site
This commit is contained in:
parent
b80acb62b3
commit
0ce81b9892
22 changed files with 118 additions and 50 deletions
49
2_artists.html
Normal file
49
2_artists.html
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
---
|
||||
layout: page
|
||||
title: Artists
|
||||
icon: user
|
||||
permalink: /artists/
|
||||
---
|
||||
|
||||
<div class="content container-fluid">
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="page-title col-md-2 col-md-offset-1">
|
||||
<h3>{{page.title}}</h3>
|
||||
</div>
|
||||
|
||||
<div class="about dark_bg col-md-7">
|
||||
|
||||
{% capture counter %}{{ '0' }}{% endcapture %} {% for post in site.posts %} {% for talk in post.talks %} {% if counter == '0' %}
|
||||
<div class="row">
|
||||
{% endif %}
|
||||
|
||||
<a href={{post.url}}>
|
||||
<div class="col-md-3 artist-thumb">
|
||||
|
||||
<div class="artist-media">
|
||||
{% if {{talk.media_artist_url}} %}
|
||||
<img src={{talk.media_artist_url}}></img>
|
||||
{% else %}
|
||||
<img src="/assets/no_artist_media.png"></img>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="talk-detail">
|
||||
<h4>{{talk.artist}}</h4>
|
||||
<!-- <a class="button hvr-sweep-to-top" href={{post.url}}>#{{post.number}}</a> -->
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
|
||||
{% capture counter %}{{ counter | plus:'1' }}{% endcapture %} {% if counter == '4' %} {% capture counter %}{{ '0' }}{% endcapture %}
|
||||
</div>
|
||||
{% endif %} {% endfor %} {% endfor %}
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue