After state session
This commit is contained in:
parent
71dc9aebea
commit
d5d2a33c1a
13 changed files with 143 additions and 87 deletions
55
index.html
55
index.html
|
|
@ -10,37 +10,39 @@ home: yes
|
|||
|
||||
<div data-scroll-index="{{pos}}" class="row">
|
||||
|
||||
<div class="event-date col-md-2 col-md-offset-1">
|
||||
<div class="transp-bg padded event-info col-md-2 col-md-offset-1">
|
||||
|
||||
<a class="button hvr-sweep-to-top" href={{post.url}}>
|
||||
<a class="event-date padded button hvr-sweep-to-top" href={{post.url}}>
|
||||
<h3>#{{post.number}}</h3>
|
||||
<h4>{{post.date_text}}</h4>
|
||||
{% if post.title %}
|
||||
<p>{{post.title}}</p>
|
||||
{% endif %}
|
||||
</a>
|
||||
|
||||
{% if post.title %}
|
||||
<p>{{post.title}}</p>
|
||||
{% endif %}
|
||||
|
||||
{% if post.location %}
|
||||
<p><a class="highlight button hvr-sweep-to-top" href={{post.location_website}} target="_blank">{{post.location}}</a>
|
||||
{% if post.fb_event_url %}
|
||||
<a class="highlight button hvr-sweep-to-top" target="_blank" href={{post.fb_event_url}}><i class="fa fa-facebook-square"></i></a>
|
||||
{% endif %}
|
||||
</p>
|
||||
{% endif %}
|
||||
|
||||
<p>
|
||||
<div class="padded_vert">
|
||||
<ul>
|
||||
{% for talk in post.talks %}
|
||||
{% if talk.topics %}
|
||||
{% assign tags = (talk.topics | split:",") %}
|
||||
{% for tag in tags | uniq %}
|
||||
<li>{{tag}}</li>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% for talk in post.talks %}
|
||||
{% if talk.topics %}
|
||||
{% assign tags = (talk.topics | split:",") %}
|
||||
{% for tag in tags | uniq %}
|
||||
<li>{{tag}}</li>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="padded_vert">
|
||||
{% if post.location %}
|
||||
<ul>
|
||||
<li><a class="highlight button hvr-sweep-to-top" href={{post.location_website}} target="_blank">{{post.location}}</a></li>
|
||||
{% if post.fb_event_url %}
|
||||
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href={{post.fb_event_url}}><i class="fa fa-facebook-square"></i></a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -67,19 +69,14 @@ home: yes
|
|||
{% endif%}
|
||||
{% if talk.artist_website %}
|
||||
<a class="button hvr-sweep-to-top" href={{talk.artist_website}} target="_blank"><i class="fa fa-link"></i> Website</a>
|
||||
<!-- <a class="button hvr-sweep-to-top" href={{talk.artist_website}} target="_blank">{{talk.artist_website}}</a> -->
|
||||
{% endif %}
|
||||
{% if talk.video_artist_url %}
|
||||
<br>
|
||||
<a class="button hvr-sweep-to-top" href={{talk.video_artist_url}} target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
|
||||
<!-- <br>
|
||||
<a class="button hvr-sweep-to-top" href={{talk.video_artist_url}} target="_blank">Artist's Video</a> -->
|
||||
{% endif %}
|
||||
{% if talk.talk_video_url %}
|
||||
<br>
|
||||
<a class="button hvr-sweep-to-top" href={{talk.talk_video_url}} target="_blank"><i class="fa fa-video-camera"></i> Talk at Scope</a>
|
||||
<!-- <br>
|
||||
<a class="button hvr-sweep-to-top" href={{talk.talk_video_url}} target="_blank">Talk's Video</a> -->
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue