scopesessions.org/index.html

198 lines
6.4 KiB
HTML
Raw Permalink Normal View History

2015-02-13 18:17:53 +01:00
---
layout: default
2015-02-16 09:45:44 +01:00
home: yes
2015-02-13 18:17:53 +01:00
---
{% assign post_number = site.posts | size %}
{% assign first_post = site.posts | first %}
<section id="upcoming">
<div class="content container-fluid">
<div data-scroll-index="{{post_number}}" class="row">
2016-06-26 21:22:04 +02:00
<div class="transp-bg padded event-info col-sm-2">
2025-12-22 14:38:43 +02:00
<a class="event-date padded button hvr-sweep-to-top" href="{{ first_post.url }}">
<h2>Upcoming session</h2>
<h3>#{{first_post.number}}</h3>
<h4>{{first_post.date_text}}</h4>
{% if first_post.title %}
<p>{{first_post.title}}</p>
{% endif %}
<div class="padded_vert">
<ul>
2025-12-22 14:38:43 +02:00
{% for talk in first_post.talks %}
{% if talk.topics %}
2025-12-22 14:38:43 +02:00
{% assign tags = talk.topics | split: "," | uniq %}
{% for tag in tags %}
<li>{{tag}}</li>
{% endfor %}
{% endif %}
{% endfor %}
</ul>
2017-10-30 12:30:20 +01:00
{% if first_post.location %}
<ul>
2025-12-22 14:38:43 +02:00
<li><a class="highlight button hvr-sweep-to-top" href="{{ first_post.location_website }}" target="_blank">{{first_post.location}}</a></li>
2017-10-30 12:30:20 +01:00
{% if first_post.fb_event_url %}
2025-12-22 14:38:43 +02:00
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="{{ first_post.fb_event_url }}"><i class="fa fa-facebook-square"></i></a></li>
2017-10-30 12:30:20 +01:00
{% endif %}
</ul>
{% endif %}
</div>
</a>
</div>
<div class="event event-{{first_post.number}} dark_bg col-sm-10">
{% capture talks_number %}{{ first_post.talks | size }}{% endcapture %} {% capture col_width %}{{ 12 | divided_by:talks_number }}{% endcapture %} {% for talk in first_post.talks %}
<div class="talk col-sm-{{col_width}}">
<div class="artist-media">
2025-12-22 14:38:43 +02:00
{% if talk.media_artist_url %}
<img src="{{ talk.media_artist_url }}" />
{% else %}
2025-12-22 14:38:43 +02:00
<img src="/assets/no_artist_media.png" />
{% endif %}
</div>
<div class="talk-detail">
<h4>{{talk.artist}} / {{talk.title}}</h4>
2025-12-22 14:38:43 +02:00
{% assign description_length = talk.description | size %}
{% if talk.description and description_length > 300 %}
<p>{{talk.description | truncate: 300 }}</p>
2025-12-22 14:38:43 +02:00
{% elsif talk.description %}
<p>{{talk.description}}</p>
{% endif%}
{% if talk.artist_website %}
2025-12-22 14:38:43 +02:00
<a class="button hvr-sweep-to-top" href="{{ talk.artist_website }}" target="_blank"><i class="fa fa-link"></i> Website</a>
{% endif %}
{% if talk.video_artist_url %}
<br>
2025-12-22 14:38:43 +02:00
<a class="button hvr-sweep-to-top" href="{{ talk.video_artist_url }}" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
{% endif %}
{% if talk.talk_video_url %}
<br>
2025-12-22 14:38:43 +02:00
<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>
{% endif %}
</div>
</div>
{% endfor %}
</div>
2016-06-26 21:22:04 +02:00
</div>
</div>
</section>
2015-01-09 18:01:24 +01:00
<div class="content container-fluid">
<div class="row center">
<h1>Past sessions</h1>
2016-06-26 21:22:04 +02:00
</div>
</dvi>
2014-11-30 23:17:02 +01:00
<div class="content container-fluid">
2016-06-26 21:22:04 +02:00
{% for post in site.posts %}
{% if forloop.first != true %}
2015-03-01 19:46:21 +01:00
{% assign pos = post_number | minus: post.number %}
2015-02-13 18:09:23 +01:00
2015-02-13 18:11:24 +01:00
<div data-scroll-index="{{pos}}" class="row">
2017-03-04 22:02:51 +01:00
2017-03-04 22:04:53 +01:00
<div class="padded event-info col-sm-2 col-sm-offset-1 ">
2015-02-13 18:09:23 +01:00
2025-12-22 14:38:43 +02:00
<a class="event-date padded button hvr-sweep-to-top" href="{{ post.url }}">
2017-03-04 22:02:51 +01:00
2025-12-22 14:38:43 +02:00
{% if post.layout == 'event-special' %}
2017-03-04 22:02:51 +01:00
<h4>Special event</h4>
2017-10-30 12:30:20 +01:00
<h3>{{post.number}}</h3>
2025-12-22 14:38:43 +02:00
{% elsif post.layout == 'event-spektrum' %}
2017-03-04 22:02:51 +01:00
<h4>Spektrum event</h4>
2017-10-30 12:30:20 +01:00
<h3>{{post.number}}</h3>
{% else %}
<h3>#{{post.number}}</h3>
2017-03-04 22:02:51 +01:00
{% endif %}
2015-02-13 18:11:24 +01:00
<h4>{{post.date_text}}</h4>
2015-04-14 11:57:13 +02:00
{% if post.title %}
<p>{{post.title}}</p>
2015-03-04 13:07:55 +01:00
{% endif %}
2015-04-14 11:57:13 +02:00
</a>
2015-03-01 19:46:21 +01:00
2015-04-14 11:57:13 +02:00
<div class="padded_vert">
2015-02-13 18:11:24 +01:00
<ul>
2015-04-14 11:57:13 +02:00
{% for talk in post.talks %}
{% if talk.topics %}
2025-12-22 14:38:43 +02:00
{% assign tags = talk.topics | split: "," | uniq %}
{% for tag in tags %}
2015-04-14 11:57:13 +02:00
<li>{{tag}}</li>
{% endfor %}
{% endif %}
{% endfor %}
</ul>
</div>
<div class="padded_vert">
{% if post.location %}
<ul>
2025-12-22 14:38:43 +02:00
<li><a class="highlight button hvr-sweep-to-top" href="{{ post.location_website }}" target="_blank">{{post.location}}</a></li>
2015-04-14 11:57:13 +02:00
{% if post.fb_event_url %}
2025-12-22 14:38:43 +02:00
<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>
2015-03-01 19:46:21 +01:00
{% endif %}
2015-02-13 18:11:24 +01:00
</ul>
2015-04-14 11:57:13 +02:00
{% endif %}
</div>
2015-02-13 18:09:23 +01:00
2015-02-13 18:11:24 +01:00
</div>
2017-03-04 22:02:51 +01:00
{% if post.layout == "event-special" %}
<div class="event event-{{post.number}} purple_bg col-sm-8">
{% elsif post.layout == "event-spektrum" %}
<div class="event event-{{post.number}} green_bg col-sm-8">
{% else %}
<div class="event event-{{post.number}} dark_bg col-sm-8">
{% endif %}
2015-02-13 18:09:23 +01:00
2015-02-13 18:11:24 +01:00
{% capture talks_number %}{{ post.talks | size }}{% endcapture %} {% capture col_width %}{{ 12 | divided_by:talks_number }}{% endcapture %} {% for talk in post.talks %}
2015-02-13 18:09:23 +01:00
<div class="talk col-sm-{{col_width}}">
2015-02-13 18:09:23 +01:00
2015-02-13 18:11:24 +01:00
<div class="artist-media">
2025-12-22 14:38:43 +02:00
{% if talk.media_artist_url %}
<img src="{{ talk.media_artist_url }}" />
2015-02-13 18:11:24 +01:00
{% else %}
2025-12-22 14:38:43 +02:00
<img src="/assets/no_artist_media.png" />
2015-02-13 18:11:24 +01:00
{% endif %}
</div>
2015-02-13 18:11:24 +01:00
<div class="talk-detail">
<h4>{{talk.artist}} / {{talk.title}}</h4>
2025-12-22 14:38:43 +02:00
{% assign description_length = talk.description | size %}
{% if talk.description and description_length > 300 %}
2015-02-16 09:45:44 +01:00
<p>{{talk.description | truncate: 300 }}</p>
2025-12-22 14:38:43 +02:00
{% elsif talk.description %}
<p>{{talk.description}}</p>
{% endif%}
2015-02-13 18:11:24 +01:00
{% if talk.artist_website %}
2025-12-22 14:38:43 +02:00
<a class="button hvr-sweep-to-top" href="{{ talk.artist_website }}" target="_blank"><i class="fa fa-link"></i> Website</a>
{% endif %}
{% if talk.video_artist_url %}
<br>
2025-12-22 14:38:43 +02:00
<a class="button hvr-sweep-to-top" href="{{ talk.video_artist_url }}" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
{% endif %}
{% if talk.talk_video_url %}
<br>
2025-12-22 14:38:43 +02:00
<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>
{% endif %}
2015-02-13 18:11:24 +01:00
</div>
2015-02-13 18:11:24 +01:00
</div>
2015-01-09 18:01:24 +01:00
2015-02-13 18:11:24 +01:00
{% endfor %}
2014-11-30 23:17:02 +01:00
2015-02-13 18:11:24 +01:00
</div>
2015-02-13 18:11:24 +01:00
</div>
2015-02-13 18:09:23 +01:00
2015-02-13 18:11:24 +01:00
{% endif %} {% endfor %}
2014-11-30 23:17:02 +01:00
</div>