Implemented dynamic generation of newsletter.

Takes the contents of the latest event and renders mailchimp-friendly html on /newsletter_content/ that can be inserted in a code block into mailchimp easily
This commit is contained in:
Open-Steps.org 2015-04-24 16:00:48 +02:00
parent 45d6465031
commit 6918dfddce
58 changed files with 555 additions and 55 deletions

View file

@ -2,6 +2,7 @@
layout: page
title: Call for talks
icon: sign-in
visible: true
permalink: /call-for-talks/
---

View file

@ -2,6 +2,7 @@
layout: page
title: Artists
icon: user
visible: true
permalink: /artists/
---

View file

@ -2,6 +2,7 @@
layout: page
title: About
icon: info
visible: true
permalink: /about/
---

84
4_newsletter_content.html Normal file
View file

@ -0,0 +1,84 @@
---
title: Newsletter
icon: info
visible: false
permalink: /newsletter_content/
---
<!-- Get latest event -->
{% for post in site.posts %} {% if forloop.first == true %} {% for talk in post.talks %}
<table class="mcnImageBlock" width="100%" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody class="mcnImageBlockOuter">
<tr>
<td style="padding: 9px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" class="mcnImageBlockInner" valign="top">
<table class="mcnImageContentContainer" width="100%" align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody>
<tr>
<td class="mcnImageContent" style="padding-right: 9px;padding-left: 9px;padding-top: 0;padding-bottom: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" valign="top">
<img alt="" src="http://scopesessions.org{{talk.media_artist_url}}" style="max-width: 3786px;padding-bottom: 0;display: inline !important;vertical-align: bottom;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;" class="mcnImage"
width="564" align="left">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table class="mcnTextBlock" width="100%" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody class="mcnTextBlockOuter">
<tr>
<td class="mcnTextBlockInner" valign="top" style="mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<table class="mcnTextContentContainer" width="600" align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody>
<tr>
<td class="mcnTextContent" style="padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #606060;font-family: Helvetica;font-size: 15px;line-height: 150%;text-align: left;"
valign="top">
<h3 class="null" style="margin: 0;padding: 0;display: block;font-family: Helvetica;font-size: 18px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: -.5px;text-align: left;color: #606060 !important;">
<span class="fsl">2{{forloop.index0}}:00 / {{talk.title}}</span>
</h3>
<h4 class="null" style="margin: 0;padding: 0;display: block;font-family: Helvetica;font-size: 16px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: normal;text-align: left;color: #808080 !important;">
<a href="{{talk.artist_website}}" target="_blank" style="word-wrap: break-word;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #6DC6DD;font-weight: normal;text-decoration: underline;">
<span class="fsl">{{talk.artist}}</span>
</a>
</h4>
<span class="fsl">{{talk.artist_bio}}</span>
<br>
<br>
<span class="fsl">{{talk.description}}</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table class="mcnDividerBlock" border="0" cellpadding="0" cellspacing="0" width="100%" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody class="mcnDividerBlockOuter">
<tr>
<td class="mcnDividerBlockInner" style="padding: 18px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<table style="border-top: 1px solid #999999;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td style="mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<span></span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
{% endfor %} {% endif %} {% endfor %}

View file

@ -21,7 +21,7 @@
<!-- Pages -->
{% for page in site.pages %}
{% if page.title %}
{% if page.title and page.visible == true %}
<a class="header-btn navbar-text right button menu-icon hvr-sweep-to-top" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>
{% endif %}
{% endfor %}
@ -43,7 +43,7 @@
<!-- Pages -->
{% assign sorted_pages = (site.pages | sort: 'order') %}
{% for page in sorted_pages %}
{% if page.title %}
{% if page.title and page.visible == true %}
<a class="menu-icon-big navbar-text right button hvr-sweep-to-top" href="{{ page.url | prepend: site.baseurl }}"><i class="fa fa-{{ page.icon}}"></i></a>
{% endif %}
{% endfor %}
@ -96,7 +96,7 @@
<div class="row">
<div class="col-md-7">
<h4><i class="fa fa-newspaper-o"></i> Join our newsletter</h4>
{% include newsletter.html %}
{% include join_newsletter.html %}
</div>
<div class="col-md-5">
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>

View file

@ -36,7 +36,7 @@ talks:
artist_bio: "SUSI SIE (1982) is a Berlin-based artist whose work moves between the fields of art and science.She is on a mission to explore the physical and mathematical nature of unusual forms, substances and materialsto show the hidden beauty and magic of our natural world that constantly surrounds us.Strictly applying analog techniques and refusing any computer animations or effects, Susi Sies haptic and detailed work is above all a highly personal study of the genuineness, perception and authenticity of things. Susi Sies work has been featured by internationally renowned online platforms such as Fubiz, Vimeo Staff Picks, Colossal, Motionographer and Arte Creative, has been exhibited around the globe (U.S.A., UK, Asia, Russia, France, Germany) and won several awards at international film festivals. She studied video art in Maastricht (2002-2006) and worked in a Cologne-based post production agency (2006-2011). Since 2011 she works as a freelance director, DoP and editor. She does what she loves. And loves what she does."
description: "My background / how I came to the idea of filming analog moving structures / showing master films / showing making of scenes and describing the process / struggle between artwork and client work"
artist_website: "http://susisie.de/"
media_artist_url: "https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60"
media_artist_url: "/images/7f8ca7c45e7cb962e3e85b170beadc60.png"
video_artist_url: "https://vimeo.com/108057431"
talk_video_url:
---

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -71,6 +71,8 @@
</div>
<!-- For mobile -->
@ -103,6 +105,8 @@
</div>
</div>
@ -161,7 +165,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>
@ -373,7 +377,7 @@
<div class="artist-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>

View file

@ -72,6 +72,8 @@
</div>
<!-- For mobile -->
@ -104,6 +106,8 @@
</div>
</div>
@ -162,7 +166,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -72,6 +72,8 @@
</div>
<!-- For mobile -->
@ -104,6 +106,8 @@
</div>
</div>
@ -162,7 +166,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>
@ -308,7 +312,7 @@
<div class="artist-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>

View file

@ -72,6 +72,8 @@
</div>
<!-- For mobile -->
@ -104,6 +106,8 @@
</div>
</div>
@ -162,7 +166,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -6,8 +6,8 @@
</description>
<link>http://scopesessions.org/</link>
<atom:link href="http://scopesessions.org /feed.xml " rel="self" type="application/rss+xml" />
<pubDate>Thu, 23 Apr 2015 13:12:11 +0200</pubDate>
<lastBuildDate>Thu, 23 Apr 2015 13:12:11 +0200</lastBuildDate>
<pubDate>Fri, 24 Apr 2015 15:51:49 +0200</pubDate>
<lastBuildDate>Fri, 24 Apr 2015 15:51:49 +0200</lastBuildDate>
<generator>Jekyll v2.5.2</generator>
<item>

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View file

@ -72,6 +72,8 @@
</div>
<!-- For mobile -->
@ -104,6 +106,8 @@
</div>
</div>
@ -162,7 +166,7 @@
<div class="col-md-2">
<div class="upcoming-media">
<img src=https://fbcdn-sphotos-f-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/p480x480/10420223_797446157006435_3830969453492917667_n.jpg?oh=b28409a0de267f1b9eacb35eb415e6cb&oe=559F4952&__gda__=1436374796_7f8ca7c45e7cb962e3e85b170beadc60></img>
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png></img>
</div>
</div>

View file

@ -0,0 +1,225 @@
<!-- Get latest event -->
<table class="mcnImageBlock" width="100%" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody class="mcnImageBlockOuter">
<tr>
<td style="padding: 9px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" class="mcnImageBlockInner" valign="top">
<table class="mcnImageContentContainer" width="100%" align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody>
<tr>
<td class="mcnImageContent" style="padding-right: 9px;padding-left: 9px;padding-top: 0;padding-bottom: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" valign="top">
<img alt="" src="http://scopesessions.org/images/AlonaRodeh.SafeandSoundIndex.Kids.jpg" style="max-width: 3786px;padding-bottom: 0;display: inline !important;vertical-align: bottom;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;" class="mcnImage"
width="564" align="left">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table class="mcnTextBlock" width="100%" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody class="mcnTextBlockOuter">
<tr>
<td class="mcnTextBlockInner" valign="top" style="mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<table class="mcnTextContentContainer" width="600" align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody>
<tr>
<td class="mcnTextContent" style="padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #606060;font-family: Helvetica;font-size: 15px;line-height: 150%;text-align: left;"
valign="top">
<h3 class="null" style="margin: 0;padding: 0;display: block;font-family: Helvetica;font-size: 18px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: -.5px;text-align: left;color: #606060 !important;">
<span class="fsl">20:00 / Safe and Sound: a personal reflection on the nature of alarming systems</span>
</h3>
<h4 class="null" style="margin: 0;padding: 0;display: block;font-family: Helvetica;font-size: 16px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: normal;text-align: left;color: #808080 !important;">
<a href="http://www.alonarodeh.com" target="_blank" style="word-wrap: break-word;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #6DC6DD;font-weight: normal;text-decoration: underline;">
<span class="fsl">Alona Rodeh</span>
</a>
</h4>
<span class="fsl">This talk will be dedicated to the rhetorics of alarms and emergency signals, in sound and visual, as a part of the artist's ongoing abstract research on the subjects. Discussing the movement in history of reflectives and glow of magical tricks to military tactics, dazzle and camouflage to the aesthetic of psychedelics, observing the extended usage of led lights in everyday households, safety regulations in the public sphere and neon runners. </span>
<br>
<br>
<span class="fsl">Alona Rodeh was born in 1979 in Israel and is based in Tel Aviv and Berlin. Holding an MFA from the Bezalel Academy of Art and Design (2009), Rodeh has presented large-scale commissioned projects and solo shows at several international venues including Herzliya Museum of Contemporary Art (Herzliya, 2014), Künstlerhaus Bethanien (Berlin, 2014), Helena Rubinstein Pavilion (Tel Aviv Museum, 2013), The Center for Contemporary Art (Tel Aviv, 2013), Plug In ICA (Winnipeg, 2012), and The Israeli Center for Digital Art (Holon, 2012). Rodeh has performed at the 54th Venice Biennial and The Israel Museum in Jerusalem. From 2013-2014, she was artist-in-residence at Künstlerhaus Bethanien, Berlin. Alona Rodehs diverse practice uses a wide range of media, testing systems and cultural phenomena by agitating objects, spaces and situations into choreographed performances.</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table class="mcnDividerBlock" border="0" cellpadding="0" cellspacing="0" width="100%" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody class="mcnDividerBlockOuter">
<tr>
<td class="mcnDividerBlockInner" style="padding: 18px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<table style="border-top: 1px solid #999999;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td style="mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<span></span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table class="mcnImageBlock" width="100%" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody class="mcnImageBlockOuter">
<tr>
<td style="padding: 9px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" class="mcnImageBlockInner" valign="top">
<table class="mcnImageContentContainer" width="100%" align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody>
<tr>
<td class="mcnImageContent" style="padding-right: 9px;padding-left: 9px;padding-top: 0;padding-bottom: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" valign="top">
<img alt="" src="http://scopesessions.org/images/tumblr_njlz54nFYj1rfsgueo1_1280.jpg" style="max-width: 3786px;padding-bottom: 0;display: inline !important;vertical-align: bottom;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;" class="mcnImage"
width="564" align="left">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table class="mcnTextBlock" width="100%" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody class="mcnTextBlockOuter">
<tr>
<td class="mcnTextBlockInner" valign="top" style="mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<table class="mcnTextContentContainer" width="600" align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody>
<tr>
<td class="mcnTextContent" style="padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #606060;font-family: Helvetica;font-size: 15px;line-height: 150%;text-align: left;"
valign="top">
<h3 class="null" style="margin: 0;padding: 0;display: block;font-family: Helvetica;font-size: 18px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: -.5px;text-align: left;color: #606060 !important;">
<span class="fsl">21:00 / Warped vision</span>
</h3>
<h4 class="null" style="margin: 0;padding: 0;display: block;font-family: Helvetica;font-size: 16px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: normal;text-align: left;color: #808080 !important;">
<a href="http://theresabaumgartner.com" target="_blank" style="word-wrap: break-word;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #6DC6DD;font-weight: normal;text-decoration: underline;">
<span class="fsl">Theresa Baumgartner,Alis</span>
</a>
</h4>
<span class="fsl">Theresa Baumgartner is a visual artist based in Berlin.In her work, she explores the dialogue between moving image and music using her own distinct, bleak aesthetics that derive from a painter´s approach to pixels and light. For AV performances and music videos, she has teamed up with artists like Deadfader, Positive Centre, Sighas and Shifted´s projects Covered in Sand and Visions of Love. For her talk at scope sessions, she will present her new project with Alis. The producer formerly known as Subbeena, worked with artists such as Jamie Woon and OmMas Keith, and appeared on labels such as Planet Mu and on Fabric's Surgeon mix CD. Her work has been featured on music magazines and websites such as The Guardian, Fact Magazine, The Quietus and many more. Her Music consists of multi - layered sounds combined with dancy, bassy rhythms covering them with smokey vocals. In a first degree access to creating visuals Theresa will manipulate live captured and live generated content with both analogue and digital tools. The findings of that process is a distorted picture of the immediate present, the now ripped apart into various layers.</span>
<br>
<br>
<span class="fsl">Alis and I will present a short live set. After that I will talk abut the idea, concept and technical approach of the visual part</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table class="mcnDividerBlock" border="0" cellpadding="0" cellspacing="0" width="100%" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody class="mcnDividerBlockOuter">
<tr>
<td class="mcnDividerBlockInner" style="padding: 18px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<table style="border-top: 1px solid #999999;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td style="mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<span></span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table class="mcnImageBlock" width="100%" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody class="mcnImageBlockOuter">
<tr>
<td style="padding: 9px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" class="mcnImageBlockInner" valign="top">
<table class="mcnImageContentContainer" width="100%" align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody>
<tr>
<td class="mcnImageContent" style="padding-right: 9px;padding-left: 9px;padding-top: 0;padding-bottom: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" valign="top">
<img alt="" src="http://scopesessions.org/images/7f8ca7c45e7cb962e3e85b170beadc60.png" style="max-width: 3786px;padding-bottom: 0;display: inline !important;vertical-align: bottom;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;" class="mcnImage"
width="564" align="left">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table class="mcnTextBlock" width="100%" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody class="mcnTextBlockOuter">
<tr>
<td class="mcnTextBlockInner" valign="top" style="mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<table class="mcnTextContentContainer" width="600" align="left" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody>
<tr>
<td class="mcnTextContent" style="padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #606060;font-family: Helvetica;font-size: 15px;line-height: 150%;text-align: left;"
valign="top">
<h3 class="null" style="margin: 0;padding: 0;display: block;font-family: Helvetica;font-size: 18px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: -.5px;text-align: left;color: #606060 !important;">
<span class="fsl">22:00 / Between Art & Science</span>
</h3>
<h4 class="null" style="margin: 0;padding: 0;display: block;font-family: Helvetica;font-size: 16px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: normal;text-align: left;color: #808080 !important;">
<a href="http://susisie.de/" target="_blank" style="word-wrap: break-word;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #6DC6DD;font-weight: normal;text-decoration: underline;">
<span class="fsl">Susi Sie</span>
</a>
</h4>
<span class="fsl">SUSI SIE (1982) is a Berlin-based artist whose work moves between the fields of art and science.She is on a mission to explore the physical and mathematical nature of unusual forms, substances and materialsto show the hidden beauty and magic of our natural world that constantly surrounds us.Strictly applying analog techniques and refusing any computer animations or effects, Susi Sies haptic and detailed work is above all a highly personal study of the genuineness, perception and authenticity of things. Susi Sies work has been featured by internationally renowned online platforms such as Fubiz, Vimeo Staff Picks, Colossal, Motionographer and Arte Creative, has been exhibited around the globe (U.S.A., UK, Asia, Russia, France, Germany)and won several awards at international film festivals. She studied video art in Maastricht (2002-2006) and worked in a Cologne-based post production agency (2006-2011). Since 2011 she works as a freelance director, DoP and editor. She does what she loves. And loves what she does.</span>
<br>
<br>
<span class="fsl">My background / how I came to the idea of filming analog moving structures / showing master films / showing making of scenes and describing the process / struggle between artwork and client work</span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table class="mcnDividerBlock" border="0" cellpadding="0" cellspacing="0" width="100%" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<tbody class="mcnDividerBlockOuter">
<tr>
<td class="mcnDividerBlockInner" style="padding: 18px;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<table style="border-top: 1px solid #999999;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" class="mcnDividerContent" border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td style="mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
<span></span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB