--- layout: default home: yes --- {% assign post_number = site.posts | size %} {% assign first_post = site.posts | first %}
{% capture talks_number %}{{ first_post.talks | size }}{% endcapture %} {% capture col_width %}{{ 12 | divided_by:talks_number }}{% endcapture %} {% for talk in first_post.talks %}
{% if {{talk.media_artist_url}} %} {% else %} {% endif %}

{{talk.artist}} / {{talk.title}}

{% if (talk.description | size) > 300 %}

{{talk.description | truncate: 300 }}

{% else %}

{{talk.description}}

{% endif%} {% if talk.artist_website %} Website {% endif %} {% if talk.video_artist_url %}
Artist video {% endif %} {% if talk.talk_video_url %}
Talk at Scope {% endif %}
{% endfor %}

Past sessions

{% for post in site.posts %} {% if forloop.first != true %} {% assign pos = post_number | minus: post.number %}

#{{post.number}}

{{post.date_text}}

{% if post.title %}

{{post.title}}

{% endif %}
    {% for talk in post.talks %} {% if talk.topics %} {% assign tags = (talk.topics | split:",") %} {% for tag in tags | uniq %}
  • {{tag}}
  • {% endfor %} {% endif %} {% endfor %}
{% if post.location %} {% endif %}
{% capture talks_number %}{{ post.talks | size }}{% endcapture %} {% capture col_width %}{{ 12 | divided_by:talks_number }}{% endcapture %} {% for talk in post.talks %}
{% if {{talk.media_artist_url}} %} {% else %} {% endif %}

{{talk.artist}} / {{talk.title}}

{% if (talk.description | size) > 300 %}

{{talk.description | truncate: 300 }}

{% else %}

{{talk.description}}

{% endif%} {% if talk.artist_website %} Website {% endif %} {% if talk.video_artist_url %}
Artist video {% endif %} {% if talk.talk_video_url %}
Talk at Scope {% endif %}
{% endfor %}
{% endif %} {% endfor %}