beautified html & js
This commit is contained in:
parent
fe460c0a2e
commit
a777ddada6
15 changed files with 648 additions and 753 deletions
72
artists.html
72
artists.html
|
|
@ -1,59 +1,43 @@
|
|||
---
|
||||
layout: page
|
||||
title: Artists
|
||||
permalink: /artists/
|
||||
---
|
||||
--- layout: page title: Artists permalink: /artists/ ---
|
||||
|
||||
<div class="content container-fluid">
|
||||
|
||||
<div class="row">
|
||||
<div class="row">
|
||||
|
||||
<div class="page-title col-md-2 col-md-offset-1">
|
||||
<h3>{{page.title}}</h3>
|
||||
<a class="highlight button hvr-sweep-to-top" href="/">Back to home</a>
|
||||
</div>
|
||||
<div class="page-title col-md-2 col-md-offset-1">
|
||||
<h3>{{page.title}}</h3>
|
||||
<a class="highlight button hvr-sweep-to-top" href="/">Back to home</a>
|
||||
</div>
|
||||
|
||||
<div class="about dark_bg col-md-7">
|
||||
<div class="about dark_bg col-md-7">
|
||||
|
||||
{% capture counter %}{{ '0' }}{% endcapture %}
|
||||
{% capture counter %}{{ '0' }}{% endcapture %} {% for post in site.posts %} {% for talk in post.talks %} {% if counter == '0' %}
|
||||
<div class="row">
|
||||
{% endif %}
|
||||
|
||||
{% for post in site.posts %}
|
||||
{% for talk in post.talks %}
|
||||
<div class="dark_bg col-md-3">
|
||||
|
||||
{% if counter == '0' %}
|
||||
<div class="row">
|
||||
{% endif %}
|
||||
<div class="artist-media">
|
||||
{% if {{talk.media_artist_url}} %}
|
||||
<img class="artist-media" src={{talk.media_artist_url}}></img>
|
||||
{% else %}
|
||||
<img class="artist-media" src="/assets/no_artist-media.png"></img>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="dark_bg col-md-3">
|
||||
|
||||
<div class="artist-media">
|
||||
{% if {{talk.media_artist_url}} %}
|
||||
<img class="artist-media" src={{talk.media_artist_url}}></img>
|
||||
{% else %}
|
||||
<img class="artist-media" 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>
|
||||
|
||||
{% capture counter %}{{ counter | plus:'1' }}{% endcapture %}
|
||||
|
||||
{% if counter == '4' %}
|
||||
{% capture counter %}{{ '0' }}{% endcapture %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
<div class="talk-detail">
|
||||
<h4>{{talk.artist}}</h4>
|
||||
<a class="button hvr-sweep-to-top" href={{post.url}}>#{{post.number}}</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{% 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