upgraded jekyll and bundle

This commit is contained in:
randogoth 2025-12-22 14:38:43 +02:00
parent 8b0d19ab35
commit 36bfce14b4
127 changed files with 4647 additions and 4225 deletions

3
.gitignore vendored
View file

@ -1,4 +1,5 @@
.sass-cache
/bower_components
.remote-sync.json
_site/bower_components
_site/bower_components
.jekyll-cache/

View file

@ -19,14 +19,14 @@ permalink: /artists/
<div class="row">
{% endif %}
<a href={{post.url}}>
<a href="{{ post.url }}">
<div class="col-md-3 artist-thumb">
<div class="artist-media">
{% if {{talk.media_artist_url}} %}
<img src={{talk.media_artist_url}}></img>
{% if talk.media_artist_url %}
<img src="{{ talk.media_artist_url }}" />
{% else %}
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
{% endif %}
</div>

View file

@ -24,7 +24,7 @@ permalink: /spektrum/
<div class="transp-bg padded event-info col-sm-2 col-sm-offset-1">
<a class="event-date padded 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 %}
@ -36,8 +36,8 @@ permalink: /spektrum/
<ul>
{% for talk in post.talks %}
{% if talk.topics %}
{% assign tags = (talk.topics | split:",") %}
{% for tag in tags | uniq %}
{% assign tags = talk.topics | split: "," | uniq %}
{% for tag in tags %}
<li>{{tag}}</li>
{% endfor %}
{% endif %}
@ -48,9 +48,9 @@ permalink: /spektrum/
<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>
<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>
<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 %}
@ -65,30 +65,31 @@ permalink: /spektrum/
<div class="talk col-sm-{{col_width}}">
<div class="artist-media">
{% if {{talk.media_artist_url}} %}
<img src={{talk.media_artist_url}}></img>
{% if talk.media_artist_url %}
<img src="{{ talk.media_artist_url }}" />
{% else %}
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
{% endif %}
</div>
<div class="talk-detail">
<h4>{{talk.artist}} / {{talk.title}}</h4>
{% if (talk.description | size) > 300 %}
{% assign description_length = talk.description | size %}
{% if talk.description and description_length > 300 %}
<p>{{talk.description | truncate: 300 }}</p>
{% else %}
{% elsif talk.description %}
<p>{{talk.description}}</p>
{% 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"><i class="fa fa-link"></i> 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>
<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>
<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>
<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>

View file

@ -52,14 +52,15 @@ permalink: /video/
{% for talk in post.talks %}
{% if talk.talk_video_url %}
{% assign vimeo_id = talk.talk_video_url %}
{% assign tags = "" | split: "" %}
{% if talk.topics %}
{% assign tags = (talk.topics | split:",") %}
{% assign tags = talk.topics | split: "," | uniq %}
{% endif %}
<div class="videobox {% for tag in tags | uniq %}{{tag | strip | replace: " ", "-" | downcase}} {% endfor %}{{post.location | strip | replace: " ", "-" | downcase}} col-sm-3" vimeo="{{vimeo_id}}">
<div class="video-title">{{talk.artist}}</div>
<div class="playbutton"></div>
<div class="video-description"><h3>{{talk.title}}</h3><p><span class="video-session">Session #{{ post.number }}, {{post.date_text}}</span>: <span class="video-artist">{{talk.artist}}</span> / {{talk.artist_website}} {{talk.description}}</p><p class="visible-lg">{{talk.artist_bio}}</p></div>
</div>
<div class="videobox {% for tag in tags %}{{tag | strip | replace: " ", "-" | downcase}} {% endfor %}{{post.location | strip | replace: " ", "-" | downcase}} col-sm-3" vimeo="{{vimeo_id}}">
<div class="video-title">{{talk.artist}}</div>
<div class="playbutton"></div>
<div class="video-description"><h3>{{talk.title}}</h3><p><span class="video-session">Session #{{ post.number }}, {{post.date_text}}</span>: <span class="video-artist">{{talk.artist}}</span> / {{talk.artist_website}} {{talk.description}}</p><p class="visible-lg">{{talk.artist_bio}}</p></div>
</div>
{% endif %}
{% endfor %}
{% endfor %}

View file

@ -49,10 +49,11 @@ permalink: /video_fullscreen/
{% for talk in post.talks %}
{% if talk.talk_video_url %}
{% assign vimeo_id = talk.talk_video_url %}
{% assign tags = "" | split: "" %}
{% if talk.topics %}
{% assign tags = (talk.topics | split:",") %}
{% assign tags = talk.topics | split: "," | uniq %}
{% endif %}
<div class="videobox {% for tag in tags | uniq %}{{tag | strip | replace: " ", "-" | downcase}} {% endfor %}{{post.location | strip | replace: " ", "-" | downcase}} col-sm-3" vimeo="{{vimeo_id}}">
<div class="videobox {% for tag in tags %}{{tag | strip | replace: " ", "-" | downcase}} {% endfor %}{{post.location | strip | replace: " ", "-" | downcase}} col-sm-3" vimeo="{{vimeo_id}}">
<div class="video-title">{{talk.artist}}</div>
<div class="playbutton"></div>
<div class="video-description"><h3>{{talk.title}}</h3><p><span class="video-session">{% if post.number %}Session #{{ post.number }}, {% endif %}{{post.date_text}}</span>: <span class="video-artist">{{talk.artist}}</span> / {{talk.artist_website}} {{talk.description}}</p><p class="visible-lg">{{talk.artist_bio}}</p></div>

17
Gemfile
View file

@ -1,13 +1,8 @@
# A sample Gemfile
source "https://rubygems.org"
# gem "rails"
gem "mini_magick"
gem "faraday"
gem "kramdown"
gem "jekyll"
gem "jekyll-watch"
# group :jekyll_plugins do
# gem "image-reference-update"
# end
gem "jekyll", "~> 4.3"
gem "jekyll-watch", "~> 2.2"
gem "kramdown", "~> 2.4"
gem "mini_magick", "~> 4.12"
gem "faraday", "~> 2.10"
gem "webrick", "~> 1.8"

View file

@ -1,47 +1,104 @@
GEM
remote: https://rubygems.org/
specs:
colorator (0.1)
faraday (0.9.1)
multipart-post (>= 1.2, < 3)
ffi (1.9.10)
jekyll (3.1.6)
colorator (~> 0.1)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 1.1)
kramdown (~> 1.3)
liquid (~> 3.0)
mercenary (~> 0.3.3)
rouge (~> 1.7)
addressable (2.8.8)
public_suffix (>= 2.0.2, < 8.0)
base64 (0.3.0)
bigdecimal (4.0.1)
colorator (1.1.0)
concurrent-ruby (1.3.6)
csv (3.3.5)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
faraday (2.14.0)
faraday-net_http (>= 2.0, < 3.5)
json
logger
faraday-net_http (3.4.2)
net-http (~> 0.5)
ffi (1.17.2)
ffi (1.17.2-x86_64-linux-gnu)
forwardable-extended (2.6.0)
google-protobuf (4.33.2)
bigdecimal
rake (>= 13)
google-protobuf (4.33.2-x86_64-linux-gnu)
bigdecimal
rake (>= 13)
http_parser.rb (0.8.0)
i18n (1.14.8)
concurrent-ruby (~> 1.0)
jekyll (4.4.1)
addressable (~> 2.4)
base64 (~> 0.2)
colorator (~> 1.0)
csv (~> 3.0)
em-websocket (~> 0.5)
i18n (~> 1.0)
jekyll-sass-converter (>= 2.0, < 4.0)
jekyll-watch (~> 2.0)
json (~> 2.6)
kramdown (~> 2.3, >= 2.3.1)
kramdown-parser-gfm (~> 1.0)
liquid (~> 4.0)
mercenary (~> 0.3, >= 0.3.6)
pathutil (~> 0.9)
rouge (>= 3.0, < 5.0)
safe_yaml (~> 1.0)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-watch (1.3.1)
terminal-table (>= 1.8, < 4.0)
webrick (~> 1.7)
jekyll-sass-converter (3.1.0)
sass-embedded (~> 1.75)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (1.10.0)
liquid (3.0.6)
listen (3.0.6)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9.7)
mercenary (0.3.6)
mini_magick (4.5.1)
multipart-post (2.0.0)
rb-fsevent (0.9.7)
rb-inotify (0.9.7)
ffi (>= 0.5.0)
rouge (1.11.1)
json (2.18.0)
kramdown (2.5.1)
rexml (>= 3.3.9)
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.4)
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
logger (1.7.0)
mercenary (0.4.0)
mini_magick (4.13.2)
net-http (0.9.1)
uri (>= 0.11.1)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (7.0.0)
rake (13.3.1)
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
rexml (3.4.4)
rouge (4.6.1)
safe_yaml (1.0.5)
sass (3.7.4)
sass-embedded (1.97.1)
google-protobuf (~> 4.31)
rake (>= 13)
sass-embedded (1.97.1-x86_64-linux-gnu)
google-protobuf (~> 4.31)
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
unicode-display_width (2.6.0)
uri (1.1.1)
webrick (1.9.2)
PLATFORMS
ruby
x86_64-linux
DEPENDENCIES
faraday
jekyll
jekyll-watch
kramdown
mini_magick
faraday (~> 2.10)
jekyll (~> 4.3)
jekyll-watch (~> 2.2)
kramdown (~> 2.4)
mini_magick (~> 4.12)
webrick (~> 1.8)
BUNDLED WITH
2.0.2
4.0.2

View file

@ -11,22 +11,21 @@ scopesessions.org
```
git clone https://bitbucket.org/acorbi/scopesessions.org.git
```
* Install dependencies
```
sudo apt-get install jekyll
sudo gem install bundle
sudo bundle install
```
* Serve files
```
jekyll serve
# Serve starts a small webserver with your site on http://localhost:4000 for testing
```
* Build files
```
jekyll build
# Build generates the HTML/JS/CSS into _site/
```
* Install dependencies
```
gem install bundler
bundle install
```
* Serve files
```
bundle exec jekyll serve
# Serve starts a small webserver with your site on http://localhost:4000 for testing
```
* Build files
```
bundle exec jekyll build
# Build generates the HTML/JS/CSS into _site/
```
* Commit/Push changes to master.
```
git add --all .

View file

@ -19,8 +19,8 @@ layout: default
<ul>
{% for talk in page.talks %}
{% if talk.topics %}
{% assign tags = (talk.topics | split:",") %}
{% for tag in tags | uniq %}
{% assign tags = talk.topics | split: "," | uniq %}
{% for tag in tags %}
<li>{{tag}}</li>
{% endfor %}
{% endif %}
@ -31,9 +31,9 @@ layout: default
<div class="padded_vert">
{% if page.location %}
<ul>
<li><a class="highlight button hvr-sweep-to-top" href={{page.location_website}} target="_blank">{{page.location}}</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="{{ page.location_website }}" target="_blank">{{page.location}}</a></li>
{% if page.fb_event_url %}
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href={{page.fb_event_url}}><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="{{ page.fb_event_url }}"><i class="fa fa-facebook-square"></i></a></li>
{% endif %}
</ul>
{% endif %}
@ -48,10 +48,10 @@ layout: default
<div class="talk col-md-{{col_width}}">
<div class="artist-media">
{% if {{talk.media_artist_url}} %}
<img src={{talk.media_artist_url}}></img>
{% if talk.media_artist_url %}
<img src="{{ talk.media_artist_url }}" />
{% else %}
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
{% endif %}
</div>
@ -63,20 +63,20 @@ layout: default
<h5>About {{talk.artist}}</h5>
<p>{{talk.artist_bio}}</p>
{% endif %}
{% if talk.artist_website || talk.video_artist_url || talk.video_url %}
{% if talk.artist_website or talk.video_artist_url or talk.video_url %}
{% 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"><i class="fa fa-link"></i> Website</a>
{% endif %}
{% if talk.video_artist_url %}
<div class="transp-bg padded">
<p>Artist's Video</p>
<iframe src="//player.vimeo.com/video/{{(talk.video_artist_url | split:"/") | last}}" width="100%" height="140" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<iframe src="//player.vimeo.com/video/{{ talk.video_artist_url | split: "/" | last }}" width="100%" height="140" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
{% endif %}
{% if talk.talk_video_url %}
<div class="transp-bg padded">
<p>Talk's Video</p>
<iframe src="//player.vimeo.com/video/{{(talk.talk_video_url | split:"/") | last}}" width="100%" height="140" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<iframe src="//player.vimeo.com/video/{{ talk.talk_video_url | split: "/" | last }}" width="100%" height="140" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
{% endif %}
{% endif %}
@ -118,8 +118,8 @@ layout: default
<h4>Discover more</h4>
{% if page.previous %}
<a class="button hvr-sweep-to-top left" href={{page.previous.url | prepend: site.baseurl }}>#{{page.previous.number}}: {{page.previous.date_text}} {{page.previous.title}}</a> {% endif %} {% if page.next %}
<a class="button hvr-sweep-to-top right" href={{page.next.url | prepend: site.baseurl }}>#{{page.next.number}}: {{page.next.date_text}} {{page.next.title}}</a> {% endif %}
<a class="button hvr-sweep-to-top left" href="{{ page.previous.url | prepend: site.baseurl }}">#{{page.previous.number}}: {{page.previous.date_text}} {{page.previous.title}}</a> {% endif %} {% if page.next %}
<a class="button hvr-sweep-to-top right" href="{{ page.next.url | prepend: site.baseurl }}">#{{page.next.number}}: {{page.next.date_text}} {{page.next.title}}</a> {% endif %}
</div>

View file

@ -19,8 +19,8 @@ layout: default
<ul>
{% for talk in page.talks %}
{% if talk.topics %}
{% assign tags = (talk.topics | split:",") %}
{% for tag in tags | uniq %}
{% assign tags = talk.topics | split: "," | uniq %}
{% for tag in tags %}
<li>{{tag}}</li>
{% endfor %}
{% endif %}
@ -31,9 +31,9 @@ layout: default
<div class="padded_vert">
{% if page.location %}
<ul>
<li><a class="highlight button hvr-sweep-to-top" href={{page.location_website}} target="_blank">{{page.location}}</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="{{ page.location_website }}" target="_blank">{{page.location}}</a></li>
{% if page.fb_event_url %}
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href={{page.fb_event_url}}><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="{{ page.fb_event_url }}"><i class="fa fa-facebook-square"></i></a></li>
{% endif %}
</ul>
{% endif %}
@ -48,10 +48,10 @@ layout: default
<div class="talk col-md-{{col_width}}">
<div class="artist-media">
{% if {{talk.media_artist_url}} %}
<img src={{talk.media_artist_url}}></img>
{% if talk.media_artist_url %}
<img src="{{ talk.media_artist_url }}" />
{% else %}
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
{% endif %}
</div>
@ -63,20 +63,20 @@ layout: default
<h5>About {{talk.artist}}</h5>
<p>{{talk.artist_bio}}</p>
{% endif %}
{% if talk.artist_website || talk.video_artist_url || talk.video_url %}
{% if talk.artist_website or talk.video_artist_url or talk.video_url %}
{% 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"><i class="fa fa-link"></i> Website</a>
{% endif %}
{% if talk.video_artist_url %}
<div class="transp-bg padded">
<p>Artist's Video</p>
<iframe src="//player.vimeo.com/video/{{(talk.video_artist_url | split:"/") | last}}" width="100%" height="140" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<iframe src="//player.vimeo.com/video/{{ talk.video_artist_url | split: "/" | last }}" width="100%" height="140" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
{% endif %}
{% if talk.talk_video_url %}
<div class="transp-bg padded">
<p>Talk's Video</p>
<iframe src="//player.vimeo.com/video/{{(talk.talk_video_url | split:"/") | last}}" width="100%" height="140" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<iframe src="//player.vimeo.com/video/{{ talk.talk_video_url | split: "/" | last }}" width="100%" height="140" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
{% endif %}
{% endif %}
@ -118,8 +118,8 @@ layout: default
<h4>Discover more</h4>
{% if page.previous %}
<a class="button hvr-sweep-to-top left" href={{page.previous.url | prepend: site.baseurl }}>#{{page.previous.number}}: {{page.previous.date_text}} {{page.previous.title}}</a> {% endif %} {% if page.next %}
<a class="button hvr-sweep-to-top right" href={{page.next.url | prepend: site.baseurl }}>#{{page.next.number}}: {{page.next.date_text}} {{page.next.title}}</a> {% endif %}
<a class="button hvr-sweep-to-top left" href="{{ page.previous.url | prepend: site.baseurl }}">#{{page.previous.number}}: {{page.previous.date_text}} {{page.previous.title}}</a> {% endif %} {% if page.next %}
<a class="button hvr-sweep-to-top right" href="{{ page.next.url | prepend: site.baseurl }}">#{{page.next.number}}: {{page.next.date_text}} {{page.next.title}}</a> {% endif %}
</div>

View file

@ -16,11 +16,11 @@ layout: default
</div>
<div class="padded_vert">
<ul>
<ul>
{% for talk in page.talks %}
{% if talk.topics %}
{% assign tags = (talk.topics | split:",") %}
{% for tag in tags | uniq %}
{% assign tags = talk.topics | split: "," | uniq %}
{% for tag in tags %}
<li>{{tag}}</li>
{% endfor %}
{% endif %}
@ -31,9 +31,9 @@ layout: default
<div class="padded_vert">
{% if page.location %}
<ul>
<li><a class="highlight button hvr-sweep-to-top" href={{page.location_website}} target="_blank">{{page.location}}</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="{{ page.location_website }}" target="_blank">{{page.location}}</a></li>
{% if page.fb_event_url %}
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href={{page.fb_event_url}}><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="{{ page.fb_event_url }}"><i class="fa fa-facebook-square"></i></a></li>
{% endif %}
</ul>
{% endif %}
@ -48,10 +48,10 @@ layout: default
<div class="talk col-md-{{col_width}}">
<div class="artist-media">
{% if {{talk.media_artist_url}} %}
<img src={{talk.media_artist_url}}></img>
{% if talk.media_artist_url %}
<img src="{{ talk.media_artist_url }}" />
{% else %}
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
{% endif %}
</div>
@ -63,18 +63,18 @@ layout: default
<h5>About {{talk.artist}}</h5>
<p>{{talk.artist_bio}}</p>
{% endif %}
{% if talk.artist_website || talk.video_artist_url || talk.video_url %}
{% if talk.artist_website or talk.video_artist_url or talk.video_url %}
{% 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"><i class="fa fa-link"></i> 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>
<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 %}
<div class="transp-bg padded">
<p>Talk's Video</p>
<iframe src="//player.vimeo.com/video/{{(talk.talk_video_url | split:"/") | last}}" width="100%" height="140" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<iframe src="//player.vimeo.com/video/{{ talk.talk_video_url | split: "/" | last }}" width="100%" height="140" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
{% endif %}
{% endif %}
@ -116,8 +116,8 @@ layout: default
<h4>Discover more</h4>
{% if page.previous %}
<a class="button hvr-sweep-to-top left" href={{page.previous.url | prepend: site.baseurl }}>#{{page.previous.number}}: {{page.previous.date_text}} {{page.previous.title}}</a> {% endif %} {% if page.next %}
<a class="button hvr-sweep-to-top right" href={{page.next.url | prepend: site.baseurl }}>#{{page.next.number}}: {{page.next.date_text}} {{page.next.title}}</a> {% endif %}
<a class="button hvr-sweep-to-top left" href="{{ page.previous.url | prepend: site.baseurl }}">#{{page.previous.number}}: {{page.previous.date_text}} {{page.previous.title}}</a> {% endif %} {% if page.next %}
<a class="button hvr-sweep-to-top right" href="{{ page.next.url | prepend: site.baseurl }}">#{{page.next.number}}: {{page.next.date_text}} {{page.next.title}}</a> {% endif %}
</div>

View file

@ -1,6 +1,7 @@
require 'uri'
require 'faraday'
require 'yaml'
require 'date'
require 'mini_magick'
class Localizer
@ -49,14 +50,17 @@ class Localizer
# helper to make sure that we can follow redirects, which can be important for
# many of the cloud file sharing services out there.
def download_file_helper(connection, url)
response = connection.get do |req|
req.url(url)
end
def download_file_helper(connection, url, redirect_limit = 5)
raise "Too many redirects while downloading #{url}" if redirect_limit <= 0
response = connection.get(url)
case response.status
when 302
download_file_helper(connection, response['Location'])
when 301, 302, 303, 307, 308
location = response.headers['location']
raise "Redirect received without Location header for #{url}" unless location
download_file_helper(connection, location, redirect_limit - 1)
when 200
response
else
@ -70,7 +74,7 @@ class Localizer
contents = File.read(file, encoding: 'UTF-8')
# Step 1: get all the images that must be downloaded
yaml = YAML.load(contents)
yaml = YAML.safe_load(contents, permitted_classes: [Date], aliases: true)
yaml['talks'].each do |talk|
IMAGE_FIELDS.each do |image_field|

View file

@ -1,13 +0,0 @@
# A sample Gemfile
source "https://rubygems.org"
# gem "rails"
gem "mini_magick"
gem "faraday"
gem "kramdown"
gem "jekyll"
gem "jekyll-watch"
# group :jekyll_plugins do
# gem "image-reference-update"
# end

View file

@ -1,47 +0,0 @@
GEM
remote: https://rubygems.org/
specs:
colorator (0.1)
faraday (0.9.1)
multipart-post (>= 1.2, < 3)
ffi (1.9.10)
jekyll (3.1.6)
colorator (~> 0.1)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 1.1)
kramdown (~> 1.3)
liquid (~> 3.0)
mercenary (~> 0.3.3)
rouge (~> 1.7)
safe_yaml (~> 1.0)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-watch (1.3.1)
listen (~> 3.0)
kramdown (1.10.0)
liquid (3.0.6)
listen (3.0.6)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9.7)
mercenary (0.3.6)
mini_magick (4.5.1)
multipart-post (2.0.0)
rb-fsevent (0.9.7)
rb-inotify (0.9.7)
ffi (>= 0.5.0)
rouge (1.11.1)
safe_yaml (1.0.5)
sass (3.7.4)
PLATFORMS
ruby
DEPENDENCIES
faraday
jekyll
jekyll-watch
kramdown
mini_magick
BUNDLED WITH
2.0.2

View file

@ -9,25 +9,24 @@ scopesessions.org
### Development
```
git clone https://acorbi@bitbucket.org/acorbi/scopesessions.org.git
git clone https://bitbucket.org/acorbi/scopesessions.org.git
```
* Install dependencies
```
sudo apt-get install jekyll
sudo gem install bundle
sudo bundle install
```
* Serve files
```
jekyll serve
# Serve starts a small webserver with your site on http://localhost:4000 for testing
```
* Build files
```
jekyll build
# Build generates the HTML/JS/CSS into _site/
```
* Commit/Push changes to master or other branch. **NOTE** Optimally, all changes would be done in a separated branch and then merged per Pull-Request into master.
* Install dependencies
```
gem install bundler
bundle install
```
* Serve files
```
bundle exec jekyll serve
# Serve starts a small webserver with your site on http://localhost:4000 for testing
```
* Build files
```
bundle exec jekyll build
# Build generates the HTML/JS/CSS into _site/
```
* Commit/Push changes to master.
```
git add --all .
git commit -m "Changed this and that"
@ -36,9 +35,4 @@ git push
### Deployment
* SSH into scopesessions.org and pull the changes from master.
```
cd /var/www/vhosts/scopesessions.org
git checkout master
git pull
```
* Contact a.corbi@gmail.com

View file

@ -9,9 +9,9 @@
<title>About</title>
<meta name="description" content="Scope is a meeting point for the creative and the curious, a platform for sharing and learning in an informal setting. Guest artists are invited to present a project, a concept, a process or an experience. The presentations are short, around 40 minutes and unrestricted in form. Each session offers a variety of topics and approaches; Scope is about exposure, not for the artist, but for the audience. If you wish to share at one of our sessions send us a mail to mail [at] scopesessions [dot] org. Our focus is on intermedia arts and technologies, but we love to be surprised..!
">
<link rel="canonical" href="http://scopesessions.org/about/">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/about/">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1556,10 +1556,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>

File diff suppressed because it is too large Load diff

View file

@ -9,9 +9,9 @@
<title>Call for talks</title>
<meta name="description" content="Scope is a meeting point for the creative and the curious, a platform for sharing and learning in an informal setting. Guest artists are invited to present a project, a concept, a process or an experience. The presentations are short, around 40 minutes and unrestricted in form. Each session offers a variety of topics and approaches; Scope is about exposure, not for the artist, but for the audience. If you wish to share at one of our sessions send us a mail to mail [at] scopesessions [dot] org. Our focus is on intermedia arts and technologies, but we love to be surprised..!
">
<link rel="canonical" href="http://scopesessions.org/call-for-talks/">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/call-for-talks/">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1556,10 +1556,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>

View file

@ -8,9 +8,9 @@
<title>Scope @ LPM</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/event-special/2012/06/01/LPM.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/event-special/2012/06/01/LPM.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1657,7 +1657,7 @@
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1668,7 +1668,7 @@
<a class="button hvr-sweep-to-top" href=http://optikalink.weebly.com/about.html target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://optikalink.weebly.com/about.html" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1688,7 +1688,7 @@
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1703,7 +1703,7 @@ Professional, portable VJ system for iPad 2 At home or in the club, professional
<a class="button hvr-sweep-to-top" href=http://hexler.net target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://hexler.net" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1723,7 +1723,7 @@ Professional, portable VJ system for iPad 2 At home or in the club, professional
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1735,7 +1735,7 @@ Together with Katerina Liana presented at LPM 2012 their Live Performance called
<a class="button hvr-sweep-to-top" href=http://bestbefore.gr/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://bestbefore.gr/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1755,7 +1755,7 @@ Together with Katerina Liana presented at LPM 2012 their Live Performance called
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1768,7 +1768,7 @@ MESO is working on the border line between technology and design — offering an
<a class="button hvr-sweep-to-top" href=http://meso.net/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://meso.net/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1788,7 +1788,7 @@ MESO is working on the border line between technology and design — offering an
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1801,7 +1801,7 @@ Toby harris A.K.A *spark is a digital media maverick, he crosses the disciplines
<a class="button hvr-sweep-to-top" href=http://lightsurgeons.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://lightsurgeons.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1832,8 +1832,8 @@ Toby harris A.K.A *spark is a digital media maverick, he crosses the disciplines
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/05/10/014.html>#14: May 10th, 2012 FAMU/CAS special session</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/09/13/015.html>#15: September 13th, 2012 015</a>
<a class="button hvr-sweep-to-top left" href="/session/2012/05/10/014.html">#14: May 10th, 2012 FAMU/CAS special session</a>
<a class="button hvr-sweep-to-top right" href="/session/2012/09/13/015.html">#15: September 13th, 2012 015</a>
</div>

View file

@ -4,19 +4,19 @@
<title>Scope Sessions Artist talks &amp; media salon</title>
<description>Scope is a meeting point for the creative and the curious, a platform for sharing and learning in an informal setting. Guest artists are invited to present a project, a concept, a process or an experience. The presentations are short, around 40 minutes and unrestricted in form. Each session offers a variety of topics and approaches; Scope is about exposure, not for the artist, but for the audience. If you wish to share at one of our sessions send us a mail to mail [at] scopesessions [dot] org. Our focus is on intermedia arts and technologies, but we love to be surprised..!
</description>
<link>http://scopesessions.org/</link>
<atom:link href="http://scopesessions.org /feed.xml " rel="self" type="application/rss+xml" />
<pubDate>Sat, 01 Feb 2020 14:23:00 +0100</pubDate>
<lastBuildDate>Sat, 01 Feb 2020 14:23:00 +0100</lastBuildDate>
<generator>Jekyll v3.1.6</generator>
<link>http://localhost:4000/</link>
<atom:link href="http://localhost:4000 /feed.xml " rel="self" type="application/rss+xml" />
<pubDate>Mon, 22 Dec 2025 14:37:18 +0200</pubDate>
<lastBuildDate>Mon, 22 Dec 2025 14:37:18 +0200</lastBuildDate>
<generator>Jekyll v4.4.1</generator>
<item>
<title>089</title>
<description>
</description>
<pubDate>Thu, 13 Feb 2020 00:00:00 +0100</pubDate>
<link>http://scopesessions.org/session/2020/02/13/089.html</link>
<guid isPermaLink="true">http://scopesessions.org/session/2020/02/13/089.html</guid>
<pubDate>Thu, 13 Feb 2020 00:00:00 +0200</pubDate>
<link>http://localhost:4000/session/2020/02/13/089.html</link>
<guid isPermaLink="true">http://localhost:4000/session/2020/02/13/089.html</guid>
<category>session</category>
@ -26,9 +26,9 @@
<title>088</title>
<description>
</description>
<pubDate>Thu, 05 Dec 2019 00:00:00 +0100</pubDate>
<link>http://scopesessions.org/session/2019/12/05/088.html</link>
<guid isPermaLink="true">http://scopesessions.org/session/2019/12/05/088.html</guid>
<pubDate>Thu, 05 Dec 2019 00:00:00 +0200</pubDate>
<link>http://localhost:4000/session/2019/12/05/088.html</link>
<guid isPermaLink="true">http://localhost:4000/session/2019/12/05/088.html</guid>
<category>session</category>
@ -38,9 +38,9 @@
<title>087</title>
<description>
</description>
<pubDate>Fri, 01 Nov 2019 00:00:00 +0100</pubDate>
<link>http://scopesessions.org/session/2019/11/01/087.html</link>
<guid isPermaLink="true">http://scopesessions.org/session/2019/11/01/087.html</guid>
<pubDate>Fri, 01 Nov 2019 00:00:00 +0200</pubDate>
<link>http://localhost:4000/session/2019/11/01/087.html</link>
<guid isPermaLink="true">http://localhost:4000/session/2019/11/01/087.html</guid>
<category>session</category>
@ -50,9 +50,9 @@
<title>086</title>
<description>
</description>
<pubDate>Thu, 10 Oct 2019 00:00:00 +0200</pubDate>
<link>http://scopesessions.org/session/2019/10/10/086.html</link>
<guid isPermaLink="true">http://scopesessions.org/session/2019/10/10/086.html</guid>
<pubDate>Thu, 10 Oct 2019 00:00:00 +0300</pubDate>
<link>http://localhost:4000/session/2019/10/10/086.html</link>
<guid isPermaLink="true">http://localhost:4000/session/2019/10/10/086.html</guid>
<category>session</category>
@ -62,9 +62,9 @@
<title>084</title>
<description>
</description>
<pubDate>Thu, 13 Jun 2019 00:00:00 +0200</pubDate>
<link>http://scopesessions.org/session/2019/06/13/084.html</link>
<guid isPermaLink="true">http://scopesessions.org/session/2019/06/13/084.html</guid>
<pubDate>Thu, 13 Jun 2019 00:00:00 +0300</pubDate>
<link>http://localhost:4000/session/2019/06/13/084.html</link>
<guid isPermaLink="true">http://localhost:4000/session/2019/06/13/084.html</guid>
<category>session</category>
@ -74,9 +74,9 @@
<title>083</title>
<description>
</description>
<pubDate>Thu, 09 May 2019 00:00:00 +0200</pubDate>
<link>http://scopesessions.org/session/2019/05/09/083.html</link>
<guid isPermaLink="true">http://scopesessions.org/session/2019/05/09/083.html</guid>
<pubDate>Thu, 09 May 2019 00:00:00 +0300</pubDate>
<link>http://localhost:4000/session/2019/05/09/083.html</link>
<guid isPermaLink="true">http://localhost:4000/session/2019/05/09/083.html</guid>
<category>session</category>
@ -86,9 +86,9 @@
<title>080</title>
<description>
</description>
<pubDate>Thu, 07 Feb 2019 00:00:00 +0100</pubDate>
<link>http://scopesessions.org/session/2019/02/07/080.html</link>
<guid isPermaLink="true">http://scopesessions.org/session/2019/02/07/080.html</guid>
<pubDate>Thu, 07 Feb 2019 00:00:00 +0200</pubDate>
<link>http://localhost:4000/session/2019/02/07/080.html</link>
<guid isPermaLink="true">http://localhost:4000/session/2019/02/07/080.html</guid>
<category>session</category>
@ -98,9 +98,9 @@
<title>079</title>
<description>
</description>
<pubDate>Thu, 10 Jan 2019 00:00:00 +0100</pubDate>
<link>http://scopesessions.org/session/2019/01/10/079.html</link>
<guid isPermaLink="true">http://scopesessions.org/session/2019/01/10/079.html</guid>
<pubDate>Thu, 10 Jan 2019 00:00:00 +0200</pubDate>
<link>http://localhost:4000/session/2019/01/10/079.html</link>
<guid isPermaLink="true">http://localhost:4000/session/2019/01/10/079.html</guid>
<category>session</category>
@ -110,9 +110,9 @@
<title>078</title>
<description>
</description>
<pubDate>Thu, 13 Dec 2018 00:00:00 +0100</pubDate>
<link>http://scopesessions.org/session/2018/12/13/078.html</link>
<guid isPermaLink="true">http://scopesessions.org/session/2018/12/13/078.html</guid>
<pubDate>Thu, 13 Dec 2018 00:00:00 +0200</pubDate>
<link>http://localhost:4000/session/2018/12/13/078.html</link>
<guid isPermaLink="true">http://localhost:4000/session/2018/12/13/078.html</guid>
<category>session</category>
@ -122,9 +122,9 @@
<title>077</title>
<description>
</description>
<pubDate>Thu, 08 Nov 2018 00:00:00 +0100</pubDate>
<link>http://scopesessions.org/session/2018/11/08/077.html</link>
<guid isPermaLink="true">http://scopesessions.org/session/2018/11/08/077.html</guid>
<pubDate>Thu, 08 Nov 2018 00:00:00 +0200</pubDate>
<link>http://localhost:4000/session/2018/11/08/077.html</link>
<guid isPermaLink="true">http://localhost:4000/session/2018/11/08/077.html</guid>
<category>session</category>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 MiB

View file

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 269 KiB

After

Width:  |  Height:  |  Size: 269 KiB

Before After
Before After

File diff suppressed because it is too large Load diff

View file

@ -9,9 +9,9 @@
<title>Join our team</title>
<meta name="description" content="Scope is a meeting point for the creative and the curious, a platform for sharing and learning in an informal setting. Guest artists are invited to present a project, a concept, a process or an experience. The presentations are short, around 40 minutes and unrestricted in form. Each session offers a variety of topics and approaches; Scope is about exposure, not for the artist, but for the audience. If you wish to share at one of our sessions send us a mail to mail [at] scopesessions [dot] org. Our focus is on intermedia arts and technologies, but we love to be surprised..!
">
<link rel="canonical" href="http://scopesessions.org/join-our-team/">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/join-our-team/">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1556,10 +1556,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>

View file

@ -8,9 +8,9 @@
<title>001</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/07/07/001.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2011/07/07/001.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1616,9 +1616,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.atelier-aeuglein.de/ target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.atelier-aeuglein.de/" target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/227346430628544/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/227346430628544/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1634,7 +1634,7 @@
<div class="artist-media">
<img src=/images/DSC_3475-480x321.jpg_resized.png></img>
<img src="/images/DSC_3475-480x321.jpg_resized.png" />
</div>
@ -1645,7 +1645,7 @@
<a class="button hvr-sweep-to-top" href=http://numode.net/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://numode.net/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1660,7 +1660,7 @@
<div class="artist-media">
<img src=/images/DSC_3498-480x321.jpg_resized.png></img>
<img src="/images/DSC_3498-480x321.jpg_resized.png" />
</div>
@ -1671,7 +1671,7 @@
<a class="button hvr-sweep-to-top" href=http://aude-f.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://aude-f.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1686,7 +1686,7 @@
<div class="artist-media">
<img src=/images/DSC_3506-480x321.jpg_resized.png></img>
<img src="/images/DSC_3506-480x321.jpg_resized.png" />
</div>
@ -1697,7 +1697,7 @@
<a class="button hvr-sweep-to-top" href=https://pixelnoizz.wordpress.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="https://pixelnoizz.wordpress.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1723,8 +1723,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/special/2010/06/01/visualberlinFestival.html>#1: June 10-12, 2010 visualberlinFestival</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/07/21/002.html>#2: July 21st, 2011 002</a>
<a class="button hvr-sweep-to-top left" href="/special/2010/06/01/visualberlinFestival.html">#1: June 10-12, 2010 visualberlinFestival</a>
<a class="button hvr-sweep-to-top right" href="/session/2011/07/21/002.html">#2: July 21st, 2011 002</a>
</div>

View file

@ -8,9 +8,9 @@
<title>002</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/07/21/002.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2011/07/21/002.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1609,9 +1609,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.atelier-aeuglein.de/ target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.atelier-aeuglein.de/" target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/201439723242192/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/201439723242192/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1627,7 +1627,7 @@
<div class="artist-media">
<img src=/images/IMG_1177-480x360.jpg_resized.png></img>
<img src="/images/IMG_1177-480x360.jpg_resized.png" />
</div>
@ -1641,7 +1641,7 @@
<a class="button hvr-sweep-to-top" href=http://www.ilankatin.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.ilankatin.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1656,7 +1656,7 @@
<div class="artist-media">
<img src=/images/panoramica_scope_2-480x205.jpg_resized.png></img>
<img src="/images/panoramica_scope_2-480x205.jpg_resized.png" />
</div>
@ -1670,7 +1670,7 @@
<a class="button hvr-sweep-to-top" href=http://pkirn.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://pkirn.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1696,8 +1696,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/07/07/001.html>#1: July 07th, 2011 001</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/08/18/003.html>#3: August 18th, 2011 003</a>
<a class="button hvr-sweep-to-top left" href="/session/2011/07/07/001.html">#1: July 07th, 2011 001</a>
<a class="button hvr-sweep-to-top right" href="/session/2011/08/18/003.html">#3: August 18th, 2011 003</a>
</div>

View file

@ -8,9 +8,9 @@
<title>003</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/08/18/003.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2011/08/18/003.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1620,9 +1620,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.atelier-aeuglein.de/ target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.atelier-aeuglein.de/" target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/232409800128891/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/232409800128891/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1638,7 +1638,7 @@
<div class="artist-media">
<img src=/images/4192750051_2a7142470e_o-480x356.jpg_resized.png></img>
<img src="/images/4192750051_2a7142470e_o-480x356.jpg_resized.png" />
</div>
@ -1650,7 +1650,7 @@
<a class="button hvr-sweep-to-top" href=http://thegreeneyl.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://thegreeneyl.com" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1670,7 +1670,7 @@
<div class="artist-media">
<img src=/images/266632_2121009978527_1044126991_32414311_7638732_o-480x115.jpg_resized.png></img>
<img src="/images/266632_2121009978527_1044126991_32414311_7638732_o-480x115.jpg_resized.png" />
</div>
@ -1684,7 +1684,7 @@
<a class="button hvr-sweep-to-top" href=http://www.davidc.net target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.davidc.net" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1699,7 +1699,7 @@
<div class="artist-media">
<img src=/images/Eric_Anatomy-e1313241126725.jpg_resized.png></img>
<img src="/images/Eric_Anatomy-e1313241126725.jpg_resized.png" />
</div>
@ -1713,7 +1713,7 @@
<a class="button hvr-sweep-to-top" href=http://www.forwardmotiontheater.org target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.forwardmotiontheater.org" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1744,8 +1744,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/07/21/002.html>#2: July 21st, 2011 002</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/09/15/004.html>#4: September 15th, 2011 004</a>
<a class="button hvr-sweep-to-top left" href="/session/2011/07/21/002.html">#2: July 21st, 2011 002</a>
<a class="button hvr-sweep-to-top right" href="/session/2011/09/15/004.html">#4: September 15th, 2011 004</a>
</div>

View file

@ -8,9 +8,9 @@
<title>004</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/09/15/004.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2011/09/15/004.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1609,7 +1609,7 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.atelier-aeuglein.de/ target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.atelier-aeuglein.de/" target="_blank">Atelier Äuglein</a></li>
</ul>
@ -1625,7 +1625,7 @@
<div class="artist-media">
<img src=/images/P1060348-1024x576.jpg_resized.png></img>
<img src="/images/P1060348-1024x576.jpg_resized.png" />
</div>
@ -1639,7 +1639,7 @@
<a class="button hvr-sweep-to-top" href=http://a-maze.net/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://a-maze.net/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1654,7 +1654,7 @@
<div class="artist-media">
<img src=/images/P1060361-1024x576.jpg_resized.png></img>
<img src="/images/P1060361-1024x576.jpg_resized.png" />
</div>
@ -1668,7 +1668,7 @@
<a class="button hvr-sweep-to-top" href=http://www.graffitiresearchlab.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.graffitiresearchlab.de" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1694,8 +1694,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/08/18/003.html>#3: August 18th, 2011 003</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/09/29/005.html>#5: September 29th, 2011 005</a>
<a class="button hvr-sweep-to-top left" href="/session/2011/08/18/003.html">#3: August 18th, 2011 003</a>
<a class="button hvr-sweep-to-top right" href="/session/2011/09/29/005.html">#5: September 29th, 2011 005</a>
</div>

View file

@ -8,9 +8,9 @@
<title>005</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/09/29/005.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2011/09/29/005.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1620,9 +1620,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.atelier-aeuglein.de/ target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.atelier-aeuglein.de/" target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/102363433206162/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/102363433206162/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1638,7 +1638,7 @@
<div class="artist-media">
<img src=/images/homeswf_2011.gif_resized.png></img>
<img src="/images/homeswf_2011.gif_resized.png" />
</div>
@ -1650,7 +1650,7 @@
<a class="button hvr-sweep-to-top" href=http://vjfestist.org target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://vjfestist.org" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1665,7 +1665,7 @@
<div class="artist-media">
<img src=/images/Bild-5-480x352.png_resized.png></img>
<img src="/images/Bild-5-480x352.png_resized.png" />
</div>
@ -1677,11 +1677,11 @@
<a class="button hvr-sweep-to-top" href=http://www.piercewarnecke.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.piercewarnecke.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/40779510 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/40779510" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1695,7 +1695,7 @@
<div class="artist-media">
<img src=/images/KVA_01-480x256.jpg_resized.png></img>
<img src="/images/KVA_01-480x256.jpg_resized.png" />
</div>
@ -1709,11 +1709,11 @@
<a class="button hvr-sweep-to-top" href=http://www.morishuz.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.morishuz.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/792605 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/792605" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1738,8 +1738,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/09/15/004.html>#4: September 15th, 2011 004</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/10/06/006.html>#6: October 06th, 2011 006</a>
<a class="button hvr-sweep-to-top left" href="/session/2011/09/15/004.html">#4: September 15th, 2011 004</a>
<a class="button hvr-sweep-to-top right" href="/session/2011/10/06/006.html">#6: October 06th, 2011 006</a>
</div>

View file

@ -8,9 +8,9 @@
<title>006</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/10/06/006.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2011/10/06/006.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1611,7 +1611,7 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.atelier-aeuglein.de/ target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.atelier-aeuglein.de/" target="_blank">Atelier Äuglein</a></li>
</ul>
@ -1627,7 +1627,7 @@
<div class="artist-media">
<img src=/images/telex1-480x212.png_resized.png></img>
<img src="/images/telex1-480x212.png_resized.png" />
</div>
@ -1639,11 +1639,11 @@
<a class="button hvr-sweep-to-top" href=http://servandobarreiro.es/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://servandobarreiro.es/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/28861546#at=0 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/28861546#at=0" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1657,7 +1657,7 @@
<div class="artist-media">
<img src=/images/not480.gif_resized.png></img>
<img src="/images/not480.gif_resized.png" />
</div>
@ -1669,11 +1669,11 @@
<a class="button hvr-sweep-to-top" href=http://www.block4.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.block4.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/40779510 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/40779510" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1698,8 +1698,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/09/29/005.html>#5: September 29th, 2011 005</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/10/20/007.html>#7: October 20th, 2011 007</a>
<a class="button hvr-sweep-to-top left" href="/session/2011/09/29/005.html">#5: September 29th, 2011 005</a>
<a class="button hvr-sweep-to-top right" href="/session/2011/10/20/007.html">#7: October 20th, 2011 007</a>
</div>

View file

@ -8,9 +8,9 @@
<title>007</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/10/20/007.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2011/10/20/007.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1604,7 +1604,7 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.atelier-aeuglein.de/ target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.atelier-aeuglein.de/" target="_blank">Atelier Äuglein</a></li>
</ul>
@ -1620,7 +1620,7 @@
<div class="artist-media">
<img src=/images/IMG_20110413_230052-480x360.jpg_resized.png></img>
<img src="/images/IMG_20110413_230052-480x360.jpg_resized.png" />
</div>
@ -1631,11 +1631,11 @@
<a class="button hvr-sweep-to-top" href=http://alexcorbi.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://alexcorbi.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/29069659 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/29069659" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1665,8 +1665,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/10/06/006.html>#6: October 06th, 2011 006</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/11/10/008.html>#08: November 10th, 2011 008</a>
<a class="button hvr-sweep-to-top left" href="/session/2011/10/06/006.html">#6: October 06th, 2011 006</a>
<a class="button hvr-sweep-to-top right" href="/session/2011/11/10/008.html">#08: November 10th, 2011 008</a>
</div>

View file

@ -8,9 +8,9 @@
<title>008</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/11/10/008.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2011/11/10/008.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1620,9 +1620,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.atelier-aeuglein.de/ target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.atelier-aeuglein.de/" target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/268563293186690/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/268563293186690/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1638,7 +1638,7 @@
<div class="artist-media">
<img src=/images/sog01.jpg_resized.png></img>
<img src="/images/sog01.jpg_resized.png" />
</div>
@ -1650,11 +1650,11 @@
<a class="button hvr-sweep-to-top" href=http://carrickbell.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://carrickbell.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/78114006 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/78114006" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1673,7 +1673,7 @@
<div class="artist-media">
<img src=/images/M1_greenish_video_vga-480x319.jpg_resized.png></img>
<img src="/images/M1_greenish_video_vga-480x319.jpg_resized.png" />
</div>
@ -1684,7 +1684,7 @@
<a class="button hvr-sweep-to-top" href=http://www.lekernel.net target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.lekernel.net" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1704,7 +1704,7 @@
<div class="artist-media">
<img src=/images/dm_shilouttes1717-480x360.jpg_resized.png></img>
<img src="/images/dm_shilouttes1717-480x360.jpg_resized.png" />
</div>
@ -1715,7 +1715,7 @@
<a class="button hvr-sweep-to-top" href=http://visualberlin.org/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://visualberlin.org/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1746,8 +1746,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/10/20/007.html>#7: October 20th, 2011 007</a>
<a class="button hvr-sweep-to-top right" href=/session/2011/11/17/009.html>#09: November 17th, 2011 009</a>
<a class="button hvr-sweep-to-top left" href="/session/2011/10/20/007.html">#7: October 20th, 2011 007</a>
<a class="button hvr-sweep-to-top right" href="/session/2011/11/17/009.html">#09: November 17th, 2011 009</a>
</div>

View file

@ -8,9 +8,9 @@
<title>009</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2011/11/17/009.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2011/11/17/009.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1609,9 +1609,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.atelier-aeuglein.de/ target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.atelier-aeuglein.de/" target="_blank">Atelier Äuglein</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/316199031727354/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/316199031727354/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1627,7 +1627,7 @@
<div class="artist-media">
<img src=/images/yurieido_blackandwhite_fenster.jpg_resized.png></img>
<img src="/images/yurieido_blackandwhite_fenster.jpg_resized.png" />
</div>
@ -1641,11 +1641,11 @@
<a class="button hvr-sweep-to-top" href=http://yurieido.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://yurieido.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/87391719 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/87391719" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1659,7 +1659,7 @@
<div class="artist-media">
<img src=/images/Bild-1-480x390.png_resized.png></img>
<img src="/images/Bild-1-480x390.png_resized.png" />
</div>
@ -1670,11 +1670,11 @@
<a class="button hvr-sweep-to-top" href=http://www.larissawunderlich.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.larissawunderlich.de" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/40826341 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/40826341" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1699,8 +1699,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2011/11/10/008.html>#08: November 10th, 2011 008</a>
<a class="button hvr-sweep-to-top right" href=/special/2011/12/11/Freemote.html>#2: December 11th, 2011 Scope @ Freemote</a>
<a class="button hvr-sweep-to-top left" href="/session/2011/11/10/008.html">#08: November 10th, 2011 008</a>
<a class="button hvr-sweep-to-top right" href="/special/2011/12/11/Freemote.html">#2: December 11th, 2011 Scope @ Freemote</a>
</div>

View file

@ -8,9 +8,9 @@
<title>010</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/01/12/010.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2012/01/12/010.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1607,9 +1607,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.nkprojekt.de/ target="_blank">NK</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.nkprojekt.de/" target="_blank">NK</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/322068297824556/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/322068297824556/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1625,7 +1625,7 @@
<div class="artist-media">
<img src=/images/image_bestbefore-747x1024.jpg_resized.png></img>
<img src="/images/image_bestbefore-747x1024.jpg_resized.png" />
</div>
@ -1639,11 +1639,11 @@
<a class="button hvr-sweep-to-top" href=http://www.bestbefore.gr/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.bestbefore.gr/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/118268724 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/118268724" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1657,7 +1657,7 @@
<div class="artist-media">
<img src=/images/v4-480x405.jpg_resized.png></img>
<img src="/images/v4-480x405.jpg_resized.png" />
</div>
@ -1669,7 +1669,7 @@
<a class="button hvr-sweep-to-top" href=http://crittweger.net target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://crittweger.net" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1695,8 +1695,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/special/2011/12/11/Freemote.html>#2: December 11th, 2011 Scope @ Freemote</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/02/09/011.html>#11: February 09th, 2012 011</a>
<a class="button hvr-sweep-to-top left" href="/special/2011/12/11/Freemote.html">#2: December 11th, 2011 Scope @ Freemote</a>
<a class="button hvr-sweep-to-top right" href="/session/2012/02/09/011.html">#11: February 09th, 2012 011</a>
</div>

View file

@ -8,9 +8,9 @@
<title>011</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/02/09/011.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2012/02/09/011.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1620,9 +1620,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.nkprojekt.de/ target="_blank">NK</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.nkprojekt.de/" target="_blank">NK</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/291560380905274/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/291560380905274/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1638,7 +1638,7 @@
<div class="artist-media">
<img src=/images/ctm-trailer1-416x226.jpg_resized.png></img>
<img src="/images/ctm-trailer1-416x226.jpg_resized.png" />
</div>
@ -1650,11 +1650,11 @@
<a class="button hvr-sweep-to-top" href=http://www.mfoptik.de/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.mfoptik.de/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/39914745 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/39914745" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1673,7 +1673,7 @@
<div class="artist-media">
<img src=/images/e01.jpg_resized.png></img>
<img src="/images/e01.jpg_resized.png" />
</div>
@ -1685,11 +1685,11 @@
<a class="button hvr-sweep-to-top" href=http://fleischfilm.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://fleischfilm.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/81619901 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/81619901" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1708,7 +1708,7 @@
<div class="artist-media">
<img src=/images/pikilipita-480x285.jpg_resized.png></img>
<img src="/images/pikilipita-480x285.jpg_resized.png" />
</div>
@ -1722,11 +1722,11 @@
<a class="button hvr-sweep-to-top" href=http://www.sansculotte.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.sansculotte.de" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/109852089 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/109852089" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1756,8 +1756,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/01/12/010.html>#10: January 10th, 2012 010</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/03/08/012.html>#12: March 08th, 2012 012</a>
<a class="button hvr-sweep-to-top left" href="/session/2012/01/12/010.html">#10: January 10th, 2012 010</a>
<a class="button hvr-sweep-to-top right" href="/session/2012/03/08/012.html">#12: March 08th, 2012 012</a>
</div>

View file

@ -8,9 +8,9 @@
<title>012</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/03/08/012.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2012/03/08/012.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1620,9 +1620,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.nkprojekt.de/ target="_blank">NK</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.nkprojekt.de/" target="_blank">NK</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/336225653088745/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/336225653088745/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1638,7 +1638,7 @@
<div class="artist-media">
<img src=/images/Konkreet-480x237.jpg_resized.png></img>
<img src="/images/Konkreet-480x237.jpg_resized.png" />
</div>
@ -1652,11 +1652,11 @@
<a class="button hvr-sweep-to-top" href=http://konkreetlabs.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://konkreetlabs.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/19272580 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/19272580" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1670,7 +1670,7 @@
<div class="artist-media">
<img src=/images/reynold_reynolds_burn_large-480x323.jpg_resized.png></img>
<img src="/images/reynold_reynolds_burn_large-480x323.jpg_resized.png" />
</div>
@ -1684,11 +1684,11 @@
<a class="button hvr-sweep-to-top" href=http://artstudioreynolds.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://artstudioreynolds.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/17290145 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/17290145" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1702,7 +1702,7 @@
<div class="artist-media">
<img src=/images/pikilipita-480x285.jpg_resized.png></img>
<img src="/images/pikilipita-480x285.jpg_resized.png" />
</div>
@ -1716,7 +1716,7 @@
<a class="button hvr-sweep-to-top" href=http://www.pikilipita.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.pikilipita.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1742,8 +1742,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/02/09/011.html>#11: February 09th, 2012 011</a>
<a class="button hvr-sweep-to-top right" href=/special/2012/03/23/B-Seite.html>#3: March 23rd, 2012 Scope @ B-Seite</a>
<a class="button hvr-sweep-to-top left" href="/session/2012/02/09/011.html">#11: February 09th, 2012 011</a>
<a class="button hvr-sweep-to-top right" href="/special/2012/03/23/B-Seite.html">#3: March 23rd, 2012 Scope @ B-Seite</a>
</div>

View file

@ -8,9 +8,9 @@
<title>013</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/04/12/013.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2012/04/12/013.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1618,9 +1618,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.nkprojekt.de/ target="_blank">NK</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.nkprojekt.de/" target="_blank">NK</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/284761484933897/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/284761484933897/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1636,7 +1636,7 @@
<div class="artist-media">
<img src=/images/SliderPlanten.jpg_resized.png></img>
<img src="/images/SliderPlanten.jpg_resized.png" />
</div>
@ -1650,11 +1650,11 @@
<a class="button hvr-sweep-to-top" href=http://www.yukijung.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.yukijung.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/8932276 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/8932276" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1673,7 +1673,7 @@
<div class="artist-media">
<img src=/images/about_d2.jpg_resized.png></img>
<img src="/images/about_d2.jpg_resized.png" />
</div>
@ -1687,11 +1687,11 @@
<a class="button hvr-sweep-to-top" href=http://ioannmaria.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://ioannmaria.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/11284125 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/11284125" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1710,7 +1710,7 @@
<div class="artist-media">
<img src=/images/photo-729331.JPG_resized.png></img>
<img src="/images/photo-729331.JPG_resized.png" />
</div>
@ -1724,7 +1724,7 @@
<a class="button hvr-sweep-to-top" href=http://theerasers.blogspot.de/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://theerasers.blogspot.de/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1755,8 +1755,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/special/2012/03/23/B-Seite.html>#3: March 23rd, 2012 Scope @ B-Seite</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/05/10/014.html>#14: May 10th, 2012 FAMU/CAS special session</a>
<a class="button hvr-sweep-to-top left" href="/special/2012/03/23/B-Seite.html">#3: March 23rd, 2012 Scope @ B-Seite</a>
<a class="button hvr-sweep-to-top right" href="/session/2012/05/10/014.html">#14: May 10th, 2012 FAMU/CAS special session</a>
</div>

View file

@ -8,9 +8,9 @@
<title>FAMU/CAS special session</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/05/10/014.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2012/05/10/014.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1625,9 +1625,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.nkprojekt.de/ target="_blank">NK</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.nkprojekt.de/" target="_blank">NK</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/104729662997474/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/104729662997474/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1643,7 +1643,7 @@
<div class="artist-media">
<img src=/images/poo11.jpg_resized.png></img>
<img src="/images/poo11.jpg_resized.png" />
</div>
@ -1657,11 +1657,11 @@
<a class="button hvr-sweep-to-top" href=http://daliborknapp.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://daliborknapp.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/42266718 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/42266718" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1680,7 +1680,7 @@
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1694,7 +1694,7 @@
<a class="button hvr-sweep-to-top" href=http://www.stanislav-abraham.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.stanislav-abraham.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1714,7 +1714,7 @@
<div class="artist-media">
<img src=/images/bietigheim.jpg_resized.png></img>
<img src="/images/bietigheim.jpg_resized.png" />
</div>
@ -1728,11 +1728,11 @@
<a class="button hvr-sweep-to-top" href=https://vimeo.com/user4995182 target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/user4995182" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/36490626 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/36490626" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1751,7 +1751,7 @@
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1765,11 +1765,11 @@
<a class="button hvr-sweep-to-top" href=https://vimeo.com/user1136736/videos target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/user1136736/videos" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/26734331 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/26734331" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1799,8 +1799,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/04/12/013.html>#13: April 12th, 2012 013</a>
<a class="button hvr-sweep-to-top right" href=/event-special/2012/06/01/LPM.html>#4: June 1st, 2012 Scope @ LPM</a>
<a class="button hvr-sweep-to-top left" href="/session/2012/04/12/013.html">#13: April 12th, 2012 013</a>
<a class="button hvr-sweep-to-top right" href="/event-special/2012/06/01/LPM.html">#4: June 1st, 2012 Scope @ LPM</a>
</div>

View file

@ -8,9 +8,9 @@
<title>015</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/09/13/015.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2012/09/13/015.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1618,9 +1618,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/348805051874678/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/348805051874678/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1636,7 +1636,7 @@
<div class="artist-media">
<img src=/images/picture5.jpg_resized.png></img>
<img src="/images/picture5.jpg_resized.png" />
</div>
@ -1650,7 +1650,7 @@
<a class="button hvr-sweep-to-top" href=http://troikatronix.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://troikatronix.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1670,7 +1670,7 @@
<div class="artist-media">
<img src=/images/adam.png_resized.png></img>
<img src="/images/adam.png_resized.png" />
</div>
@ -1684,7 +1684,7 @@
<a class="button hvr-sweep-to-top" href=http://www.magyaradam.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.magyaradam.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1699,7 +1699,7 @@
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1713,7 +1713,7 @@
<a class="button hvr-sweep-to-top" href=http://www.saro-seda.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.saro-seda.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1744,8 +1744,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/event-special/2012/06/01/LPM.html>#4: June 1st, 2012 Scope @ LPM</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/10/11/016.html>#16: October 11th, 2012 016</a>
<a class="button hvr-sweep-to-top left" href="/event-special/2012/06/01/LPM.html">#4: June 1st, 2012 Scope @ LPM</a>
<a class="button hvr-sweep-to-top right" href="/session/2012/10/11/016.html">#16: October 11th, 2012 016</a>
</div>

View file

@ -8,9 +8,9 @@
<title>016</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/10/11/016.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2012/10/11/016.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1622,9 +1622,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/485166844847643/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/485166844847643/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1640,7 +1640,7 @@
<div class="artist-media">
<img src=/images/anfischer_schwarm_VII_01.jpg_resized.png></img>
<img src="/images/anfischer_schwarm_VII_01.jpg_resized.png" />
</div>
@ -1654,11 +1654,11 @@
<a class="button hvr-sweep-to-top" href=http://anf.nu/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://anf.nu/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/16660444 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/16660444" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1677,7 +1677,7 @@
<div class="artist-media">
<img src=/images/Glow.jpg_resized.png></img>
<img src="/images/Glow.jpg_resized.png" />
</div>
@ -1691,11 +1691,11 @@
<a class="button hvr-sweep-to-top" href=http://frieder-weiss.de/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://frieder-weiss.de/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/14677207 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/14677207" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1714,7 +1714,7 @@
<div class="artist-media">
<img src=/images/proximity1.jpg_resized.png></img>
<img src="/images/proximity1.jpg_resized.png" />
</div>
@ -1728,11 +1728,11 @@
<a class="button hvr-sweep-to-top" href=https://syntheticmatter.wordpress.com/selected-works/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="https://syntheticmatter.wordpress.com/selected-works/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/29526501 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/29526501" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1762,8 +1762,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/09/13/015.html>#15: September 13th, 2012 015</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/11/08/017.html>#17: November 08th, 2012 HGB Leipzig Special Session</a>
<a class="button hvr-sweep-to-top left" href="/session/2012/09/13/015.html">#15: September 13th, 2012 015</a>
<a class="button hvr-sweep-to-top right" href="/session/2012/11/08/017.html">#17: November 08th, 2012 HGB Leipzig Special Session</a>
</div>

View file

@ -8,9 +8,9 @@
<title>HGB Leipzig Special Session</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/11/08/017.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2012/11/08/017.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1622,9 +1622,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/378723835536495/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/378723835536495/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1640,7 +1640,7 @@
<div class="artist-media">
<img src=/images/12_Trommelperformance-bei-the-10th-evening-von-Ira-Nimsdorf-480x319.jpg_resized.png></img>
<img src="/images/12_Trommelperformance-bei-the-10th-evening-von-Ira-Nimsdorf-480x319.jpg_resized.png" />
</div>
@ -1654,7 +1654,7 @@
<a class="button hvr-sweep-to-top" href=http://www.soundstudieslab.org/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.soundstudieslab.org/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1669,7 +1669,7 @@
<div class="artist-media">
<img src=/images/hm13.crop-l-480x348.png_resized.png></img>
<img src="/images/hm13.crop-l-480x348.png_resized.png" />
</div>
@ -1683,7 +1683,7 @@
<a class="button hvr-sweep-to-top" href=http://www.jakobwierzba.de/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.jakobwierzba.de/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1698,7 +1698,7 @@
<div class="artist-media">
<img src=/images/From-bad-to-worse.-Ruby-I-in-talk-with-Swimsuit-Tissue.-480x359.png_resized.png></img>
<img src="/images/From-bad-to-worse.-Ruby-I-in-talk-with-Swimsuit-Tissue.-480x359.png_resized.png" />
</div>
@ -1712,7 +1712,7 @@
<a class="button hvr-sweep-to-top" href=http://melodypanosian.info/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://melodypanosian.info/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1738,8 +1738,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/10/11/016.html>#16: October 11th, 2012 016</a>
<a class="button hvr-sweep-to-top right" href=/session/2012/12/13/018.html>#18: December 18th, 2012 018</a>
<a class="button hvr-sweep-to-top left" href="/session/2012/10/11/016.html">#16: October 11th, 2012 016</a>
<a class="button hvr-sweep-to-top right" href="/session/2012/12/13/018.html">#18: December 18th, 2012 018</a>
</div>

View file

@ -8,9 +8,9 @@
<title>018</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2012/12/13/018.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2012/12/13/018.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1620,9 +1620,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/209013159234382/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/209013159234382/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1638,7 +1638,7 @@
<div class="artist-media">
<img src=/images/Sonus_LocoDice2-240x160.jpg_resized.png></img>
<img src="/images/Sonus_LocoDice2-240x160.jpg_resized.png" />
</div>
@ -1652,11 +1652,11 @@
<a class="button hvr-sweep-to-top" href=http://www.jemthemisfit.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.jemthemisfit.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/95032834 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/95032834" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1675,7 +1675,7 @@
<div class="artist-media">
<img src=/images/3a82b27dc22cd1acb7f416529e193d80.png_resized.png></img>
<img src="/images/3a82b27dc22cd1acb7f416529e193d80.png_resized.png" />
</div>
@ -1689,7 +1689,7 @@
<a class="button hvr-sweep-to-top" href=http://www.zanlyons.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.zanlyons.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1709,7 +1709,7 @@
<div class="artist-media">
<img src=/images/helmet_thumb.jpg_resized.png></img>
<img src="/images/helmet_thumb.jpg_resized.png" />
</div>
@ -1723,7 +1723,7 @@
<a class="button hvr-sweep-to-top" href=http://onyx-ashanti.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://onyx-ashanti.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1754,8 +1754,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/11/08/017.html>#17: November 08th, 2012 HGB Leipzig Special Session</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/02/21/019.html>#19: February 21st, 2013 019</a>
<a class="button hvr-sweep-to-top left" href="/session/2012/11/08/017.html">#17: November 08th, 2012 HGB Leipzig Special Session</a>
<a class="button hvr-sweep-to-top right" href="/session/2013/02/21/019.html">#19: February 21st, 2013 019</a>
</div>

View file

@ -8,9 +8,9 @@
<title>019</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/02/21/019.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2013/02/21/019.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1616,9 +1616,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/422710807811358/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/422710807811358/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1634,7 +1634,7 @@
<div class="artist-media">
<img src=/images/VanessaRamosVelasquez_PICT0034.jpg_resized.png></img>
<img src="/images/VanessaRamosVelasquez_PICT0034.jpg_resized.png" />
</div>
@ -1648,11 +1648,11 @@
<a class="button hvr-sweep-to-top" href=http://www.quietrevolution.me/Vanessa_Ramos_Velasquez.html target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.quietrevolution.me/Vanessa_Ramos_Velasquez.html" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/46628342 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/46628342" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1671,7 +1671,7 @@
<div class="artist-media">
<img src=/images/prt_1379453510.png_resized.png></img>
<img src="/images/prt_1379453510.png_resized.png" />
</div>
@ -1685,11 +1685,11 @@
<a class="button hvr-sweep-to-top" href=http://cargocollective.com/geso target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://cargocollective.com/geso" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://www.vimeo.org/1234 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://www.vimeo.org/1234" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1708,7 +1708,7 @@
<div class="artist-media">
<img src=/images/prt_1384195280.gif_resized.png></img>
<img src="/images/prt_1384195280.gif_resized.png" />
</div>
@ -1722,7 +1722,7 @@
<a class="button hvr-sweep-to-top" href=http://atmosstudio.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://atmosstudio.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1770,8 +1770,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2012/12/13/018.html>#18: December 18th, 2012 018</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/03/14/020.html>#20: March 14th, 2013 020</a>
<a class="button hvr-sweep-to-top left" href="/session/2012/12/13/018.html">#18: December 18th, 2012 018</a>
<a class="button hvr-sweep-to-top right" href="/session/2013/03/14/020.html">#20: March 14th, 2013 020</a>
</div>

View file

@ -8,9 +8,9 @@
<title>020</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/03/14/020.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2013/03/14/020.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1607,9 +1607,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/136352613212399/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/136352613212399/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1625,7 +1625,7 @@
<div class="artist-media">
<img src=/images/auderrose_brentsqar_river_fogg_proseco_blur_lubitel_02.jpg_resized.png></img>
<img src="/images/auderrose_brentsqar_river_fogg_proseco_blur_lubitel_02.jpg_resized.png" />
</div>
@ -1639,11 +1639,11 @@
<a class="button hvr-sweep-to-top" href=http://auderrose.de/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://auderrose.de/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/57212575 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/57212575" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1662,7 +1662,7 @@
<div class="artist-media">
<img src=/images/IMG_20130714_163720.jpg_resized.png></img>
<img src="/images/IMG_20130714_163720.jpg_resized.png" />
</div>
@ -1676,7 +1676,7 @@
<a class="button hvr-sweep-to-top" href=http://therandomlab.blogspot.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://therandomlab.blogspot.de" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1724,8 +1724,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/02/21/019.html>#19: February 21st, 2013 019</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/04/11/021.html>#21: April 11th, 2013 021</a>
<a class="button hvr-sweep-to-top left" href="/session/2013/02/21/019.html">#19: February 21st, 2013 019</a>
<a class="button hvr-sweep-to-top right" href="/session/2013/04/11/021.html">#21: April 11th, 2013 021</a>
</div>

View file

@ -8,9 +8,9 @@
<title>021</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/04/11/021.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2013/04/11/021.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1624,9 +1624,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/233469540124578/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/233469540124578/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1642,7 +1642,7 @@
<div class="artist-media">
<img src=/images/72_MP9B3943_01_web.jpg_resized.png></img>
<img src="/images/72_MP9B3943_01_web.jpg_resized.png" />
</div>
@ -1656,11 +1656,11 @@
<a class="button hvr-sweep-to-top" href=http://niochnioszki.net target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://niochnioszki.net" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/66639911 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/66639911" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1679,7 +1679,7 @@
<div class="artist-media">
<img src=/images/WKV_980px.png_resized.png></img>
<img src="/images/WKV_980px.png_resized.png" />
</div>
@ -1693,11 +1693,11 @@
<a class="button hvr-sweep-to-top" href=http://www.gabrielshalom.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.gabrielshalom.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/19459499 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/19459499" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1716,7 +1716,7 @@
<div class="artist-media">
<img src=/images/k2.jpg_resized.png></img>
<img src="/images/k2.jpg_resized.png" />
</div>
@ -1730,11 +1730,11 @@
<a class="button hvr-sweep-to-top" href=http://just-k.info target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://just-k.info" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://www.youtube.com/watch?v=BKg4NlUDbeI target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://www.youtube.com/watch?v=BKg4NlUDbeI" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1776,8 +1776,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/03/14/020.html>#20: March 14th, 2013 020</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/05/09/022.html>#22: May 09th, 2013 LPM Preview</a>
<a class="button hvr-sweep-to-top left" href="/session/2013/03/14/020.html">#20: March 14th, 2013 020</a>
<a class="button hvr-sweep-to-top right" href="/session/2013/05/09/022.html">#22: May 09th, 2013 LPM Preview</a>
</div>

View file

@ -8,9 +8,9 @@
<title>LPM Preview</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/05/09/022.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2013/05/09/022.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1611,9 +1611,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/455007867911052/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/455007867911052/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1629,7 +1629,7 @@
<div class="artist-media">
<img src=/images/commandements-4.jpg_resized.png></img>
<img src="/images/commandements-4.jpg_resized.png" />
</div>
@ -1643,11 +1643,11 @@
<a class="button hvr-sweep-to-top" href=http://tokyodatacollective.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://tokyodatacollective.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/64406739 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/64406739" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1666,7 +1666,7 @@
<div class="artist-media">
<img src=/images/managua_still02_web.jpg_resized.png></img>
<img src="/images/managua_still02_web.jpg_resized.png" />
</div>
@ -1680,11 +1680,11 @@
<a class="button hvr-sweep-to-top" href=http://www.a-li-ce.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.a-li-ce.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/29071156 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/29071156" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1731,8 +1731,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/04/11/021.html>#21: April 11th, 2013 021</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/06/06/023.html>#23: May 06th, 2013 023</a>
<a class="button hvr-sweep-to-top left" href="/session/2013/04/11/021.html">#21: April 11th, 2013 021</a>
<a class="button hvr-sweep-to-top right" href="/session/2013/06/06/023.html">#23: May 06th, 2013 023</a>
</div>

View file

@ -8,9 +8,9 @@
<title>023</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/06/06/023.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2013/06/06/023.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1620,9 +1620,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/254628491345679/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/254628491345679/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1638,7 +1638,7 @@
<div class="artist-media">
<img src=/images/humming-fast-and-slow-1.jpg_resized.png></img>
<img src="/images/humming-fast-and-slow-1.jpg_resized.png" />
</div>
@ -1652,11 +1652,11 @@
<a class="button hvr-sweep-to-top" href=http://kohlberger.net target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://kohlberger.net" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/31265234 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/31265234" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1670,7 +1670,7 @@
<div class="artist-media">
<img src=/images/m1.jpg_resized.png></img>
<img src="/images/m1.jpg_resized.png" />
</div>
@ -1684,11 +1684,11 @@
<a class="button hvr-sweep-to-top" href=http://m-labs.hk target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://m-labs.hk" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/30824902 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/30824902" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1707,7 +1707,7 @@
<div class="artist-media">
<img src=/images/tumblr_inline_mjlw1avNFu1qm6vsu.jpg_resized.png></img>
<img src="/images/tumblr_inline_mjlw1avNFu1qm6vsu.jpg_resized.png" />
</div>
@ -1721,11 +1721,11 @@
<a class="button hvr-sweep-to-top" href=http://www.reverse-bullets.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.reverse-bullets.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/45909687 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/45909687" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1755,8 +1755,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/05/09/022.html>#22: May 09th, 2013 LPM Preview</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/07/11/024.html>#24: July 11th, 2013 024</a>
<a class="button hvr-sweep-to-top left" href="/session/2013/05/09/022.html">#22: May 09th, 2013 LPM Preview</a>
<a class="button hvr-sweep-to-top right" href="/session/2013/07/11/024.html">#24: July 11th, 2013 024</a>
</div>

View file

@ -8,9 +8,9 @@
<title>024</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/07/11/024.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2013/07/11/024.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1620,9 +1620,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/524802687568456/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/524802687568456/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1638,7 +1638,7 @@
<div class="artist-media">
<img src=/images/elektra03wp_edt.jpg_resized.png></img>
<img src="/images/elektra03wp_edt.jpg_resized.png" />
</div>
@ -1650,11 +1650,11 @@
<a class="button hvr-sweep-to-top" href=http://joeldittrich.se/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://joeldittrich.se/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/69835639 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/69835639" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1673,7 +1673,7 @@
<div class="artist-media">
<img src=/images/lichtgrenze_137-940x627.jpg_resized.png></img>
<img src="/images/lichtgrenze_137-940x627.jpg_resized.png" />
</div>
@ -1687,11 +1687,11 @@
<a class="button hvr-sweep-to-top" href=http://www.whitevoid.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.whitevoid.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/45859302 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/45859302" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1710,7 +1710,7 @@
<div class="artist-media">
<img src=/images/IMG_7972.JPG_resized.png></img>
<img src="/images/IMG_7972.JPG_resized.png" />
</div>
@ -1724,11 +1724,11 @@
<a class="button hvr-sweep-to-top" href=http://juladi.blogspot.de/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://juladi.blogspot.de/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/79229458 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/79229458" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1775,8 +1775,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/06/06/023.html>#23: May 06th, 2013 023</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/09/12/025.html>#25: September 12th, 2013 025</a>
<a class="button hvr-sweep-to-top left" href="/session/2013/06/06/023.html">#23: May 06th, 2013 023</a>
<a class="button hvr-sweep-to-top right" href="/session/2013/09/12/025.html">#25: September 12th, 2013 025</a>
</div>

View file

@ -8,9 +8,9 @@
<title>025</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/09/12/025.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2013/09/12/025.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1618,9 +1618,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/167391146784585/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/167391146784585/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1636,7 +1636,7 @@
<div class="artist-media">
<img src=/images/p1000518.jpg_resized.png></img>
<img src="/images/p1000518.jpg_resized.png" />
</div>
@ -1650,7 +1650,7 @@
<a class="button hvr-sweep-to-top" href=http://blog.timvis.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://blog.timvis.de" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1665,7 +1665,7 @@
<div class="artist-media">
<img src=/images/dwojenahustwace.jpg_resized.png></img>
<img src="/images/dwojenahustwace.jpg_resized.png" />
</div>
@ -1679,11 +1679,11 @@
<a class="button hvr-sweep-to-top" href=http://elektromoon.co.nr target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://elektromoon.co.nr" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/87604435 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/87604435" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1697,7 +1697,7 @@
<div class="artist-media">
<img src=/images/matrox_design1.jpg_resized.png></img>
<img src="/images/matrox_design1.jpg_resized.png" />
</div>
@ -1711,11 +1711,11 @@
<a class="button hvr-sweep-to-top" href=http://vjradiance.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://vjradiance.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/39488403 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/39488403" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1757,8 +1757,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/07/11/024.html>#24: July 11th, 2013 024</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/10/10/026.html>#26: October 10th, 2013 026</a>
<a class="button hvr-sweep-to-top left" href="/session/2013/07/11/024.html">#24: July 11th, 2013 024</a>
<a class="button hvr-sweep-to-top right" href="/session/2013/10/10/026.html">#26: October 10th, 2013 026</a>
</div>

View file

@ -8,9 +8,9 @@
<title>026</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/10/10/026.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2013/10/10/026.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1619,9 +1619,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/537341823000659/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/537341823000659/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1637,7 +1637,7 @@
<div class="artist-media">
<img src=/images/2014_7_28_59_11_9927169.jpg_resized.png></img>
<img src="/images/2014_7_28_59_11_9927169.jpg_resized.png" />
</div>
@ -1651,11 +1651,11 @@
<a class="button hvr-sweep-to-top" href=http://pixelnoizz.wordpress.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://pixelnoizz.wordpress.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/69255033 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/69255033" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1674,7 +1674,7 @@
<div class="artist-media">
<img src=/images/solderWorkshop.jpg_resized.png></img>
<img src="/images/solderWorkshop.jpg_resized.png" />
</div>
@ -1688,11 +1688,11 @@
<a class="button hvr-sweep-to-top" href=http://block4.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://block4.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/47792171 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/47792171" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1739,8 +1739,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/09/12/025.html>#25: September 12th, 2013 025</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/11/14/027.html>#27: November 14th, 2013 027</a>
<a class="button hvr-sweep-to-top left" href="/session/2013/09/12/025.html">#25: September 12th, 2013 025</a>
<a class="button hvr-sweep-to-top right" href="/session/2013/11/14/027.html">#27: November 14th, 2013 027</a>
</div>

View file

@ -8,9 +8,9 @@
<title>027</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/11/14/027.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2013/11/14/027.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1618,9 +1618,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/494154090699743/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/494154090699743/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1636,7 +1636,7 @@
<div class="artist-media">
<img src=/images/interior_santiago_boladecristal.jpg_resized.png></img>
<img src="/images/interior_santiago_boladecristal.jpg_resized.png" />
</div>
@ -1650,11 +1650,11 @@
<a class="button hvr-sweep-to-top" href=http://www.georginaespasa.net/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.georginaespasa.net/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/22699697 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/22699697" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1668,7 +1668,7 @@
<div class="artist-media">
<img src=/images/Atlas2.jpg_resized.png></img>
<img src="/images/Atlas2.jpg_resized.png" />
</div>
@ -1682,11 +1682,11 @@
<a class="button hvr-sweep-to-top" href=http://tarikbarri.nl target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://tarikbarri.nl" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/109702847 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/109702847" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1700,7 +1700,7 @@
<div class="artist-media">
<img src=/images/urbaniz1.jpg_resized.png></img>
<img src="/images/urbaniz1.jpg_resized.png" />
</div>
@ -1714,11 +1714,11 @@
<a class="button hvr-sweep-to-top" href=http://lemonfacefilms.com/interactive.html target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://lemonfacefilms.com/interactive.html" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/15252778 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/15252778" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1760,8 +1760,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/10/10/026.html>#26: October 10th, 2013 026</a>
<a class="button hvr-sweep-to-top right" href=/session/2013/12/12/028.html>#28: December 12th, 2013 028</a>
<a class="button hvr-sweep-to-top left" href="/session/2013/10/10/026.html">#26: October 10th, 2013 026</a>
<a class="button hvr-sweep-to-top right" href="/session/2013/12/12/028.html">#28: December 12th, 2013 028</a>
</div>

View file

@ -8,9 +8,9 @@
<title>028</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2013/12/12/028.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2013/12/12/028.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1607,9 +1607,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/185212381681271/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/185212381681271/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1625,7 +1625,7 @@
<div class="artist-media">
<img src=/images/Hanging_garden-Remastered_DEF-770x577.jpg_resized.png></img>
<img src="/images/Hanging_garden-Remastered_DEF-770x577.jpg_resized.png" />
</div>
@ -1639,11 +1639,11 @@
<a class="button hvr-sweep-to-top" href=http://julienbach.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://julienbach.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/46736893 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/46736893" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1662,7 +1662,7 @@
<div class="artist-media">
<img src=/images/DJL_00045606.jpg_resized.png></img>
<img src="/images/DJL_00045606.jpg_resized.png" />
</div>
@ -1676,11 +1676,11 @@
<a class="button hvr-sweep-to-top" href=http://www.stratofyzika.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.stratofyzika.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/69121498 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/69121498" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1727,8 +1727,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/11/14/027.html>#27: November 14th, 2013 027</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/02/13/029.html>#29: February 13th, 2014 029</a>
<a class="button hvr-sweep-to-top left" href="/session/2013/11/14/027.html">#27: November 14th, 2013 027</a>
<a class="button hvr-sweep-to-top right" href="/session/2014/02/13/029.html">#29: February 13th, 2014 029</a>
</div>

View file

@ -8,9 +8,9 @@
<title>029</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/02/13/029.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2014/02/13/029.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1616,9 +1616,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/121028808097066/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/121028808097066/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1634,7 +1634,7 @@
<div class="artist-media">
<img src=/images/04_LS.jpg_resized.png></img>
<img src="/images/04_LS.jpg_resized.png" />
</div>
@ -1648,11 +1648,11 @@
<a class="button hvr-sweep-to-top" href=http://www.feld.is target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.feld.is" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/78064366 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/78064366" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1666,7 +1666,7 @@
<div class="artist-media">
<img src=/images/berg-1.jpg_resized.png></img>
<img src="/images/berg-1.jpg_resized.png" />
</div>
@ -1680,11 +1680,11 @@
<a class="button hvr-sweep-to-top" href=http://www.valentinaferrandes.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.valentinaferrandes.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/94533312 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/94533312" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1703,7 +1703,7 @@
<div class="artist-media">
<img src=/images/kdx1g2.jpg_resized.png></img>
<img src="/images/kdx1g2.jpg_resized.png" />
</div>
@ -1717,11 +1717,11 @@
<a class="button hvr-sweep-to-top" href=http://famifax.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://famifax.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=http://vimeo.com/90115592 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="http://vimeo.com/90115592" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1768,8 +1768,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2013/12/12/028.html>#28: December 12th, 2013 028</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/03/20/030.html>#30: March 20th, 2014 B-Seite Mannheim</a>
<a class="button hvr-sweep-to-top left" href="/session/2013/12/12/028.html">#28: December 12th, 2013 028</a>
<a class="button hvr-sweep-to-top right" href="/session/2014/03/20/030.html">#30: March 20th, 2014 B-Seite Mannheim</a>
</div>

View file

@ -8,9 +8,9 @@
<title>B-Seite Mannheim</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/03/20/030.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2014/03/20/030.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1616,7 +1616,7 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://jetztkultur.de/bseite/b-seite/en/ target="_blank">Cinema Quadrat</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://jetztkultur.de/bseite/b-seite/en/" target="_blank">Cinema Quadrat</a></li>
</ul>
@ -1632,7 +1632,7 @@
<div class="artist-media">
<img src=/images/tumblr_n67e9uMKjJ1rutzzso1_1280.gif_resized.png></img>
<img src="/images/tumblr_n67e9uMKjJ1rutzzso1_1280.gif_resized.png" />
</div>
@ -1646,11 +1646,11 @@
<a class="button hvr-sweep-to-top" href=http://sinsynplus.de/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://sinsynplus.de/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/81605066 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/81605066" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1664,7 +1664,7 @@
<div class="artist-media">
<img src=/images/9694_9e8e_500.jpeg_resized.png></img>
<img src="/images/9694_9e8e_500.jpeg_resized.png" />
</div>
@ -1676,11 +1676,11 @@
<a class="button hvr-sweep-to-top" href=http://jjio.soup.io/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://jjio.soup.io/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/82451996 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/82451996" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1694,7 +1694,7 @@
<div class="artist-media">
<img src=/images/11372298575_76b899b854.jpg_resized.png></img>
<img src="/images/11372298575_76b899b854.jpg_resized.png" />
</div>
@ -1708,7 +1708,7 @@
<a class="button hvr-sweep-to-top" href=http://www.trashpuzzle.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.trashpuzzle.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1734,8 +1734,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/02/13/029.html>#29: February 13th, 2014 029</a>
<a class="button hvr-sweep-to-top right" href=/special/2014/03/23/B-Seite.html>#5: March 23, 2014 Scope @ B-Seite</a>
<a class="button hvr-sweep-to-top left" href="/session/2014/02/13/029.html">#29: February 13th, 2014 029</a>
<a class="button hvr-sweep-to-top right" href="/special/2014/03/23/B-Seite.html">#5: March 23, 2014 Scope @ B-Seite</a>
</div>

View file

@ -8,9 +8,9 @@
<title>031</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/04/10/031.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2014/04/10/031.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1618,9 +1618,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/690017594395078/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/690017594395078/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1636,7 +1636,7 @@
<div class="artist-media">
<img src=/images/14606037617_5198f60407.jpg_resized.png></img>
<img src="/images/14606037617_5198f60407.jpg_resized.png" />
</div>
@ -1650,11 +1650,11 @@
<a class="button hvr-sweep-to-top" href=http://chuuu.xxxxxxxx.jp/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://chuuu.xxxxxxxx.jp/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/9282362 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/9282362" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1673,7 +1673,7 @@
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1685,7 +1685,7 @@
<a class="button hvr-sweep-to-top" href=http://www.popkinsart.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.popkinsart.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1705,7 +1705,7 @@
<div class="artist-media">
<img src=/images/11372298575_76b899b854.jpg_resized.png></img>
<img src="/images/11372298575_76b899b854.jpg_resized.png" />
</div>
@ -1719,7 +1719,7 @@
<a class="button hvr-sweep-to-top" href=http://www.trashpuzzle.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.trashpuzzle.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1767,8 +1767,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/special/2014/03/23/B-Seite.html>#5: March 23, 2014 Scope @ B-Seite</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/05/08/032.html>#32: May 8th, 2014 032</a>
<a class="button hvr-sweep-to-top left" href="/special/2014/03/23/B-Seite.html">#5: March 23, 2014 Scope @ B-Seite</a>
<a class="button hvr-sweep-to-top right" href="/session/2014/05/08/032.html">#32: May 8th, 2014 032</a>
</div>

View file

@ -8,9 +8,9 @@
<title>032</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/05/08/032.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2014/05/08/032.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1626,9 +1626,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1384713651815919/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1384713651815919/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1644,7 +1644,7 @@
<div class="artist-media">
<img src=/images/IMG_0095_small-uriebe.jpg_resized.png></img>
<img src="/images/IMG_0095_small-uriebe.jpg_resized.png" />
</div>
@ -1658,11 +1658,11 @@
<a class="button hvr-sweep-to-top" href=http://lichtpiraten.net target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://lichtpiraten.net" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/86825341 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/86825341" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1681,7 +1681,7 @@
<div class="artist-media">
<img src=/images/The-glow-in-my-soul-300x200.jpg_resized.png></img>
<img src="/images/The-glow-in-my-soul-300x200.jpg_resized.png" />
</div>
@ -1695,11 +1695,11 @@
<a class="button hvr-sweep-to-top" href=http://www.bildpeter.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.bildpeter.de" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/19297541 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/19297541" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1713,7 +1713,7 @@
<div class="artist-media">
<img src=/images/vjfader_h.jpg_resized.png></img>
<img src="/images/vjfader_h.jpg_resized.png" />
</div>
@ -1727,11 +1727,11 @@
<a class="button hvr-sweep-to-top" href=http://www.vjfader.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.vjfader.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/44354614 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/44354614" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1778,8 +1778,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/04/10/031.html>#31: April 10th, 2014 031</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/06/12/033.html>#33: June 12th, 2014 033</a>
<a class="button hvr-sweep-to-top left" href="/session/2014/04/10/031.html">#31: April 10th, 2014 031</a>
<a class="button hvr-sweep-to-top right" href="/session/2014/06/12/033.html">#33: June 12th, 2014 033</a>
</div>

View file

@ -8,9 +8,9 @@
<title>033</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/06/12/033.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2014/06/12/033.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1618,9 +1618,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1483887038495707/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1483887038495707/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1636,7 +1636,7 @@
<div class="artist-media">
<img src=/images/richard%20tuohy%20photo%20web%20photo.JPG_resized.png></img>
<img src="/images/richard%20tuohy%20photo%20web%20photo.JPG_resized.png" />
</div>
@ -1650,7 +1650,7 @@
<a class="button hvr-sweep-to-top" href=http://nanolab.com.au/richard_tuohy.htm target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://nanolab.com.au/richard_tuohy.htm" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1665,7 +1665,7 @@
<div class="artist-media">
<img src=/images/Elephants_Graveyard_175216_WSpahn.jpg_resized.png></img>
<img src="/images/Elephants_Graveyard_175216_WSpahn.jpg_resized.png" />
</div>
@ -1679,11 +1679,11 @@
<a class="button hvr-sweep-to-top" href=http://wolfgang-spahn.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://wolfgang-spahn.de" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/85103965 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/85103965" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1697,7 +1697,7 @@
<div class="artist-media">
<img src=/images/255422_PLANCK_FSM_03_Black_1_None.jpg_resized.png></img>
<img src="/images/255422_PLANCK_FSM_03_Black_1_None.jpg_resized.png" />
</div>
@ -1748,8 +1748,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/05/08/032.html>#32: May 8th, 2014 032</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/07/10/034.html>#34: July 10th, 2014 034</a>
<a class="button hvr-sweep-to-top left" href="/session/2014/05/08/032.html">#32: May 8th, 2014 032</a>
<a class="button hvr-sweep-to-top right" href="/session/2014/07/10/034.html">#34: July 10th, 2014 034</a>
</div>

View file

@ -8,9 +8,9 @@
<title>034</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/07/10/034.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2014/07/10/034.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1626,9 +1626,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1483887038495707/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1483887038495707/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1644,7 +1644,7 @@
<div class="artist-media">
<img src=/images/loop_1_medium.jpg_resized.png></img>
<img src="/images/loop_1_medium.jpg_resized.png" />
</div>
@ -1658,11 +1658,11 @@
<a class="button hvr-sweep-to-top" href=http://quadrature.co/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://quadrature.co/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/89172355 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/89172355" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1681,7 +1681,7 @@
<div class="artist-media">
<img src=/images/msp-8-2013c.jpg_resized.png></img>
<img src="/images/msp-8-2013c.jpg_resized.png" />
</div>
@ -1695,7 +1695,7 @@
<a class="button hvr-sweep-to-top" href=http://msp.ucsd.edu/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://msp.ucsd.edu/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1715,7 +1715,7 @@
<div class="artist-media">
<img src=/images/100220_ff24ef62dbb6d8b5410c2f2b5085a1c4.jpg_srz_p_1102_551_75_22_0.50_1.20_0.00_jpg_srz_resized.png></img>
<img src="/images/100220_ff24ef62dbb6d8b5410c2f2b5085a1c4.jpg_srz_p_1102_551_75_22_0.50_1.20_0.00_jpg_srz_resized.png" />
</div>
@ -1729,11 +1729,11 @@
<a class="button hvr-sweep-to-top" href=http://3ezvisuals.wix.com/bruno3ez target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://3ezvisuals.wix.com/bruno3ez" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/97735684 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/97735684" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1780,8 +1780,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/06/12/033.html>#33: June 12th, 2014 033</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/09/11/035.html>#35: September 11th, 2014 035</a>
<a class="button hvr-sweep-to-top left" href="/session/2014/06/12/033.html">#33: June 12th, 2014 033</a>
<a class="button hvr-sweep-to-top right" href="/session/2014/09/11/035.html">#35: September 11th, 2014 035</a>
</div>

View file

@ -8,9 +8,9 @@
<title>035</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/09/11/035.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2014/09/11/035.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1622,9 +1622,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1479042312351156/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1479042312351156/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1640,7 +1640,7 @@
<div class="artist-media">
<img src=/images/apokalypsegeraet-01-400x300.jpg_resized.png></img>
<img src="/images/apokalypsegeraet-01-400x300.jpg_resized.png" />
</div>
@ -1654,7 +1654,7 @@
<a class="button hvr-sweep-to-top" href=http://macumbista.net/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://macumbista.net/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1674,7 +1674,7 @@
<div class="artist-media">
<img src=/images/rsz_12584734735_ab5af0f254_o.jpg_resized.png></img>
<img src="/images/rsz_12584734735_ab5af0f254_o.jpg_resized.png" />
</div>
@ -1688,11 +1688,11 @@
<a class="button hvr-sweep-to-top" href=http://imanolgomez.net/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://imanolgomez.net/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/26318965 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/26318965" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1711,7 +1711,7 @@
<div class="artist-media">
<img src=/images/pd-2013-11-20-at-21.14.14.png_resized.png></img>
<img src="/images/pd-2013-11-20-at-21.14.14.png_resized.png" />
</div>
@ -1725,11 +1725,11 @@
<a class="button hvr-sweep-to-top" href=http://www.juanduarteregino.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.juanduarteregino.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/103660850 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/103660850" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1776,8 +1776,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/07/10/034.html>#34: July 10th, 2014 034</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/10/09/036.html>#36: October 9th, 2014 036</a>
<a class="button hvr-sweep-to-top left" href="/session/2014/07/10/034.html">#34: July 10th, 2014 034</a>
<a class="button hvr-sweep-to-top right" href="/session/2014/10/09/036.html">#36: October 9th, 2014 036</a>
</div>

View file

@ -8,9 +8,9 @@
<title>036</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/10/09/036.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2014/10/09/036.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1624,9 +1624,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/468086960000709/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/468086960000709/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1642,7 +1642,7 @@
<div class="artist-media">
<img src=/images/logo-480x480.jpg_resized.png></img>
<img src="/images/logo-480x480.jpg_resized.png" />
</div>
@ -1656,7 +1656,7 @@
<a class="button hvr-sweep-to-top" href=http://processreversal.org/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://processreversal.org/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1671,7 +1671,7 @@
<div class="artist-media">
<img src=/images/polygonView-480x273.jpg_resized.png></img>
<img src="/images/polygonView-480x273.jpg_resized.png" />
</div>
@ -1685,7 +1685,7 @@
<a class="button hvr-sweep-to-top" href=http://kanno.so/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://kanno.so/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1705,7 +1705,7 @@
<div class="artist-media">
<img src=/images/dsc08301.jpg_resized.png></img>
<img src="/images/dsc08301.jpg_resized.png" />
</div>
@ -1719,11 +1719,11 @@
<a class="button hvr-sweep-to-top" href=http://krislimbach.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://krislimbach.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/106323654 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/106323654" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1765,8 +1765,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/09/11/035.html>#35: September 11th, 2014 035</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/11/13/037.html>#37: November 13th, 2014 privacy and online freedom of expression</a>
<a class="button hvr-sweep-to-top left" href="/session/2014/09/11/035.html">#35: September 11th, 2014 035</a>
<a class="button hvr-sweep-to-top right" href="/session/2014/11/13/037.html">#37: November 13th, 2014 privacy and online freedom of expression</a>
</div>

View file

@ -8,9 +8,9 @@
<title>privacy and online freedom of expression</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/11/13/037.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2014/11/13/037.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1600,9 +1600,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/743680015712842/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/743680015712842/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1618,7 +1618,7 @@
<div class="artist-media">
<img src=/images/about_d2.jpg_resized.png></img>
<img src="/images/about_d2.jpg_resized.png" />
</div>
@ -1629,11 +1629,11 @@
<a class="button hvr-sweep-to-top" href=http://ioannmaria.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://ioannmaria.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/11284125 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/11284125" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1658,8 +1658,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/10/09/036.html>#36: October 9th, 2014 036</a>
<a class="button hvr-sweep-to-top right" href=/session/2014/12/11/038.html>#38: December 11th, 2014 038</a>
<a class="button hvr-sweep-to-top left" href="/session/2014/10/09/036.html">#36: October 9th, 2014 036</a>
<a class="button hvr-sweep-to-top right" href="/session/2014/12/11/038.html">#38: December 11th, 2014 038</a>
</div>

View file

@ -8,9 +8,9 @@
<title>038</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2014/12/11/038.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2014/12/11/038.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1620,9 +1620,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/350359371808126/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/350359371808126/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1638,7 +1638,7 @@
<div class="artist-media">
<img src=/images/121_transformadietermeier01.jpg_resized.png></img>
<img src="/images/121_transformadietermeier01.jpg_resized.png" />
</div>
@ -1652,7 +1652,7 @@
<a class="button hvr-sweep-to-top" href=http://www.transforma.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.transforma.de" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1672,7 +1672,7 @@
<div class="artist-media">
<img src=/images/photo_cropped.jpg_resized.png></img>
<img src="/images/photo_cropped.jpg_resized.png" />
</div>
@ -1686,11 +1686,11 @@
<a class="button hvr-sweep-to-top" href=http://www.mrzl.net target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.mrzl.net" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/113216773 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/113216773" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1709,7 +1709,7 @@
<div class="artist-media">
<img src=/images/scanned1popraw_www.jpg_resized.png></img>
<img src="/images/scanned1popraw_www.jpg_resized.png" />
</div>
@ -1723,11 +1723,11 @@
<a class="button hvr-sweep-to-top" href=http://marcelinawellmer.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://marcelinawellmer.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/96049211#at=0 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/96049211#at=0" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1774,8 +1774,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/11/13/037.html>#37: November 13th, 2014 privacy and online freedom of expression</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/01/08/039.html>#39: Januar 8th, 2015 039</a>
<a class="button hvr-sweep-to-top left" href="/session/2014/11/13/037.html">#37: November 13th, 2014 privacy and online freedom of expression</a>
<a class="button hvr-sweep-to-top right" href="/session/2015/01/08/039.html">#39: Januar 8th, 2015 039</a>
</div>

View file

@ -8,9 +8,9 @@
<title>039</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/01/08/039.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2015/01/08/039.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1611,9 +1611,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1585619185003594/?ref=5><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1585619185003594/?ref=5"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1629,7 +1629,7 @@
<div class="artist-media">
<img src=/images/cropped-OO_PW_1.jpg_resized.png></img>
<img src="/images/cropped-OO_PW_1.jpg_resized.png" />
</div>
@ -1643,7 +1643,7 @@
<a class="button hvr-sweep-to-top" href=http://piercewarnecke.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://piercewarnecke.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1663,7 +1663,7 @@
<div class="artist-media">
<img src=/images/screenshot1420807005.png_resized.png></img>
<img src="/images/screenshot1420807005.png_resized.png" />
</div>
@ -1677,7 +1677,7 @@
<a class="button hvr-sweep-to-top" href=http://vvvv.org/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://vvvv.org/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1725,8 +1725,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2014/12/11/038.html>#38: December 11th, 2014 038</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/03/12/040.html>#40: March 12th, 2015 040</a>
<a class="button hvr-sweep-to-top left" href="/session/2014/12/11/038.html">#38: December 11th, 2014 038</a>
<a class="button hvr-sweep-to-top right" href="/session/2015/03/12/040.html">#40: March 12th, 2015 040</a>
</div>

View file

@ -8,9 +8,9 @@
<title>040</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/03/12/040.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2015/03/12/040.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1620,9 +1620,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/903284063025318/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/903284063025318/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1638,7 +1638,7 @@
<div class="artist-media">
<img src=/images/fetch.png_resized.png></img>
<img src="/images/fetch.png_resized.png" />
</div>
@ -1652,11 +1652,11 @@
<a class="button hvr-sweep-to-top" href=http://embeddedartist.dernulleffekt.de/doku.php target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://embeddedartist.dernulleffekt.de/doku.php" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/112580876 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/112580876" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1670,7 +1670,7 @@
<div class="artist-media">
<img src=/images/kb_hn13_0029b.jpg_resized.png></img>
<img src="/images/kb_hn13_0029b.jpg_resized.png" />
</div>
@ -1684,11 +1684,11 @@
<a class="button hvr-sweep-to-top" href=http://karlabru.net/site/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://karlabru.net/site/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/103669959 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/103669959" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1702,7 +1702,7 @@
<div class="artist-media">
<img src=/images/rnd_frame_2s_pb.jpg_resized.png></img>
<img src="/images/rnd_frame_2s_pb.jpg_resized.png" />
</div>
@ -1716,11 +1716,11 @@
<a class="button hvr-sweep-to-top" href=http://haruka.kasrl.org target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://haruka.kasrl.org" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/69155527 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/69155527" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1745,8 +1745,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/01/08/039.html>#39: Januar 8th, 2015 039</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/03/12/041.html>#41: March 19th, 2015 SCOPE @ B-Seite</a>
<a class="button hvr-sweep-to-top left" href="/session/2015/01/08/039.html">#39: Januar 8th, 2015 039</a>
<a class="button hvr-sweep-to-top right" href="/session/2015/03/12/041.html">#41: March 19th, 2015 SCOPE @ B-Seite</a>
</div>

View file

@ -8,9 +8,9 @@
<title>SCOPE @ B-Seite</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/03/12/041.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2015/03/12/041.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1621,9 +1621,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.zeitraumexit.de target="_blank">Zeitraumexit</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.zeitraumexit.de" target="_blank">Zeitraumexit</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/775861045817062/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/775861045817062/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1639,7 +1639,7 @@
<div class="artist-media">
<img src=/images/EDMT-Nexus_7-mockup-13.png_resized.png></img>
<img src="/images/EDMT-Nexus_7-mockup-13.png_resized.png" />
</div>
@ -1653,11 +1653,11 @@
<a class="button hvr-sweep-to-top" href=http://www.vjfader.com/fader-bio/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.vjfader.com/fader-bio/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/113488501 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/113488501" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1671,7 +1671,7 @@
<div class="artist-media">
<img src=/images/image136g.jpg_resized.png></img>
<img src="/images/image136g.jpg_resized.png" />
</div>
@ -1685,11 +1685,11 @@
<a class="button hvr-sweep-to-top" href=https://vimeo.com/55824850 target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/55824850" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/103669959 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/103669959" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1703,7 +1703,7 @@
<div class="artist-media">
<img src=/images/10863946_10152566352036448_7601724679990112331_o.jpg_resized.png></img>
<img src="/images/10863946_10152566352036448_7601724679990112331_o.jpg_resized.png" />
</div>
@ -1717,11 +1717,11 @@
<a class="button hvr-sweep-to-top" href=http://www.cloneproduction.net/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.cloneproduction.net/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/69155527 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/69155527" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1735,7 +1735,7 @@
<div class="artist-media">
<img src=/images/x_Glassia_ConsSpace.jpg_resized.png></img>
<img src="/images/x_Glassia_ConsSpace.jpg_resized.png" />
</div>
@ -1746,11 +1746,11 @@
<a class="button hvr-sweep-to-top" href=http://robcuellar.blogspot.de/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://robcuellar.blogspot.de/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/107773316 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/107773316" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1775,8 +1775,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/03/12/040.html>#40: March 12th, 2015 040</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/04/09/042.html>#42: April 9th, 2015 STATE Festival special edition</a>
<a class="button hvr-sweep-to-top left" href="/session/2015/03/12/040.html">#40: March 12th, 2015 040</a>
<a class="button hvr-sweep-to-top right" href="/session/2015/04/09/042.html">#42: April 9th, 2015 STATE Festival special edition</a>
</div>

View file

@ -8,9 +8,9 @@
<title>STATE Festival special edition</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/04/09/042.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2015/04/09/042.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1622,9 +1622,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/434549376705094/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/434549376705094/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1640,7 +1640,7 @@
<div class="artist-media">
<img src=/images/STATE+Logo.jpg_resized.png></img>
<img src="/images/STATE+Logo.jpg_resized.png" />
</div>
@ -1654,11 +1654,11 @@
<a class="button hvr-sweep-to-top" href=http://www.statefestival.org target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.statefestival.org" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/117501915 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/117501915" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1672,7 +1672,7 @@
<div class="artist-media">
<img src=/images/nesolito.jpg_resized.png></img>
<img src="/images/nesolito.jpg_resized.png" />
</div>
@ -1686,11 +1686,11 @@
<a class="button hvr-sweep-to-top" href=http://morphogenesis.eu target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://morphogenesis.eu" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/35430604 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/35430604" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1704,7 +1704,7 @@
<div class="artist-media">
<img src=/images/001%20BiofilmStar%20Pablo%20Rojas%20Images%20of%20Fascination.jpg_resized.png></img>
<img src="/images/001%20BiofilmStar%20Pablo%20Rojas%20Images%20of%20Fascination.jpg_resized.png" />
</div>
@ -1718,7 +1718,7 @@
<a class="button hvr-sweep-to-top" href=http://www.dadafoto.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.dadafoto.com" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1761,8 +1761,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/03/12/041.html>#41: March 19th, 2015 SCOPE @ B-Seite</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/05/14/043.html>#43: May 14th, 2015 043</a>
<a class="button hvr-sweep-to-top left" href="/session/2015/03/12/041.html">#41: March 19th, 2015 SCOPE @ B-Seite</a>
<a class="button hvr-sweep-to-top right" href="/session/2015/05/14/043.html">#43: May 14th, 2015 043</a>
</div>

View file

@ -8,9 +8,9 @@
<title>043</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/05/14/043.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2015/05/14/043.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1622,9 +1622,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/471177919697872/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/471177919697872/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1640,7 +1640,7 @@
<div class="artist-media">
<img src=/images/tumblr_njlz54nFYj1rfsgueo1_1280.jpg_resized.png></img>
<img src="/images/tumblr_njlz54nFYj1rfsgueo1_1280.jpg_resized.png" />
</div>
@ -1654,11 +1654,11 @@
<a class="button hvr-sweep-to-top" href=http://theresabaumgartner.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://theresabaumgartner.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/116537033 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/116537033" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1672,7 +1672,7 @@
<div class="artist-media">
<img src=/images/AlonaRodeh.SafeandSoundIndex.Kids.jpg_resized.png></img>
<img src="/images/AlonaRodeh.SafeandSoundIndex.Kids.jpg_resized.png" />
</div>
@ -1686,7 +1686,7 @@
<a class="button hvr-sweep-to-top" href=http://www.alonarodeh.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.alonarodeh.com" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1701,7 +1701,7 @@
<div class="artist-media">
<img src=/images/7f8ca7c45e7cb962e3e85b170beadc60.png_resized.png></img>
<img src="/images/7f8ca7c45e7cb962e3e85b170beadc60.png_resized.png" />
</div>
@ -1715,11 +1715,11 @@
<a class="button hvr-sweep-to-top" href=http://susisie.de/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://susisie.de/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/108057431 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/108057431" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1761,8 +1761,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/04/09/042.html>#42: April 9th, 2015 STATE Festival special edition</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/06/11/044.html>#44: June 11th, 2015 044</a>
<a class="button hvr-sweep-to-top left" href="/session/2015/04/09/042.html">#42: April 9th, 2015 STATE Festival special edition</a>
<a class="button hvr-sweep-to-top right" href="/session/2015/06/11/044.html">#44: June 11th, 2015 044</a>
</div>

View file

@ -8,9 +8,9 @@
<title>044</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/06/11/044.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2015/06/11/044.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1618,9 +1618,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/750076181776355/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/750076181776355/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1636,7 +1636,7 @@
<div class="artist-media">
<img src=/images/tumblr_no6sytnqa51rt1m3zo1_1280.jpg_resized.png></img>
<img src="/images/tumblr_no6sytnqa51rt1m3zo1_1280.jpg_resized.png" />
</div>
@ -1650,7 +1650,7 @@
<a class="button hvr-sweep-to-top" href=http://clintenns.tumblr.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://clintenns.tumblr.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1665,7 +1665,7 @@
<div class="artist-media">
<img src=/images/Winter_Garden.jpg_resized.png></img>
<img src="/images/Winter_Garden.jpg_resized.png" />
</div>
@ -1679,7 +1679,7 @@
<a class="button hvr-sweep-to-top" href=http://www.kair98.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.kair98.com" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1694,7 +1694,7 @@
<div class="artist-media">
<img src=/images/wcsb-mountain-view.jpg_resized.png></img>
<img src="/images/wcsb-mountain-view.jpg_resized.png" />
</div>
@ -1708,7 +1708,7 @@
<a class="button hvr-sweep-to-top" href=http://www.oca-goods.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.oca-goods.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1751,8 +1751,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/05/14/043.html>#43: May 14th, 2015 043</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/06/27/Vision_r.html>#6: June 27th, 2015 Vision'r special performances night</a>
<a class="button hvr-sweep-to-top left" href="/session/2015/05/14/043.html">#43: May 14th, 2015 043</a>
<a class="button hvr-sweep-to-top right" href="/session/2015/06/27/Vision_r.html">#6: June 27th, 2015 Vision'r special performances night</a>
</div>

View file

@ -8,9 +8,9 @@
<title>Vision'r special performances night</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/06/27/Vision_r.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2015/06/27/Vision_r.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1611,7 +1611,7 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
</ul>
@ -1627,7 +1627,7 @@
<div class="artist-media">
<img src=/images/LYM-generative-nights-03.jpg_resized.png></img>
<img src="/images/LYM-generative-nights-03.jpg_resized.png" />
</div>
@ -1639,7 +1639,7 @@
<a class="button hvr-sweep-to-top" href=http://lolaandyukaomeet.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://lolaandyukaomeet.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<div class="transp-bg padded">
@ -1659,7 +1659,7 @@
<div class="artist-media">
<img src=/images/PRINT_PSV_07_800.jpg_resized.png></img>
<img src="/images/PRINT_PSV_07_800.jpg_resized.png" />
</div>
@ -1671,7 +1671,7 @@
<a class="button hvr-sweep-to-top" href=http://cargocollective.com/dasein target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://cargocollective.com/dasein" target="_blank"><i class="fa fa-link"></i> Website</a>
<div class="transp-bg padded">
@ -1702,8 +1702,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/06/11/044.html>#44: June 11th, 2015 044</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/09/10/046.html>#46: September 10th, 2015 046</a>
<a class="button hvr-sweep-to-top left" href="/session/2015/06/11/044.html">#44: June 11th, 2015 044</a>
<a class="button hvr-sweep-to-top right" href="/session/2015/09/10/046.html">#46: September 10th, 2015 046</a>
</div>

View file

@ -8,9 +8,9 @@
<title>046</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/09/10/046.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2015/09/10/046.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1618,9 +1618,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1630853230488029/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1630853230488029/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1636,7 +1636,7 @@
<div class="artist-media">
<img src=/images/notube.png_resized.png></img>
<img src="/images/notube.png_resized.png" />
</div>
@ -1650,7 +1650,7 @@
<a class="button hvr-sweep-to-top" href=http://iocose.org target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://iocose.org" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1665,7 +1665,7 @@
<div class="artist-media">
<img src=/images/tumblr_nl5wv1vuwo1upzhszo1_500.png_resized.png></img>
<img src="/images/tumblr_nl5wv1vuwo1upzhszo1_500.png_resized.png" />
</div>
@ -1679,7 +1679,7 @@
<a class="button hvr-sweep-to-top" href=http://myungduk.org target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://myungduk.org" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1694,7 +1694,7 @@
<div class="artist-media">
<img src=/images/Fridge-Crop-770x513.jpg_resized.png></img>
<img src="/images/Fridge-Crop-770x513.jpg_resized.png" />
</div>
@ -1708,7 +1708,7 @@
<a class="button hvr-sweep-to-top" href=http://julienbach.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://julienbach.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1734,8 +1734,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/06/27/Vision_r.html>#6: June 27th, 2015 Vision'r special performances night</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/09/19/047.html>#47: September 19th, 2015 Scope @ Clujotronic</a>
<a class="button hvr-sweep-to-top left" href="/session/2015/06/27/Vision_r.html">#6: June 27th, 2015 Vision'r special performances night</a>
<a class="button hvr-sweep-to-top right" href="/session/2015/09/19/047.html">#47: September 19th, 2015 Scope @ Clujotronic</a>
</div>

View file

@ -8,9 +8,9 @@
<title>Scope @ Clujotronic</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/09/19/047.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2015/09/19/047.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1614,9 +1614,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.kulturzentrum-klausenburg.ro/ target="_blank">Piata Stefan cel Mare 18</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.kulturzentrum-klausenburg.ro/" target="_blank">Piata Stefan cel Mare 18</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/765905016846949/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/765905016846949/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1632,7 +1632,7 @@
<div class="artist-media">
<img src=/images/tatiana.jpeg_resized.png></img>
<img src="/images/tatiana.jpeg_resized.png" />
</div>
@ -1646,11 +1646,11 @@
<a class="button hvr-sweep-to-top" href=http://mechbird.fr/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://mechbird.fr/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/127556214 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/127556214" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1664,7 +1664,7 @@
<div class="artist-media">
<img src=/images/theresa.jpg_resized.png></img>
<img src="/images/theresa.jpg_resized.png" />
</div>
@ -1678,11 +1678,11 @@
<a class="button hvr-sweep-to-top" href=http://theresabaumgartner.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://theresabaumgartner.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/104433347 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/104433347" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1696,7 +1696,7 @@
<div class="artist-media">
<img src=/images/plus.jpg_resized.png></img>
<img src="/images/plus.jpg_resized.png" />
</div>
@ -1710,7 +1710,7 @@
<a class="button hvr-sweep-to-top" href=https://www.facebook.com/plus.mm target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="https://www.facebook.com/plus.mm" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1736,8 +1736,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/09/10/046.html>#46: September 10th, 2015 046</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/10/08/048.html>#48: October 8th, 2015 048</a>
<a class="button hvr-sweep-to-top left" href="/session/2015/09/10/046.html">#46: September 10th, 2015 046</a>
<a class="button hvr-sweep-to-top right" href="/session/2015/10/08/048.html">#48: October 8th, 2015 048</a>
</div>

View file

@ -8,9 +8,9 @@
<title>048</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/10/08/048.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2015/10/08/048.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1622,9 +1622,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com/ target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com/" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/768163763293618/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/768163763293618/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1640,7 +1640,7 @@
<div class="artist-media">
<img src=/images/abaix.jpg_resized.png></img>
<img src="/images/abaix.jpg_resized.png" />
</div>
@ -1654,11 +1654,11 @@
<a class="button hvr-sweep-to-top" href=http://www.klararavat.wordpress.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.klararavat.wordpress.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/86537545 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/86537545" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1672,7 +1672,7 @@
<div class="artist-media">
<img src=/images/Still-M.-Kardinal-(web).jpg_resized.png></img>
<img src="/images/Still-M.-Kardinal-(web).jpg_resized.png" />
</div>
@ -1686,11 +1686,11 @@
<a class="button hvr-sweep-to-top" href=http://segmentederwirklichkeit.de/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://segmentederwirklichkeit.de/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/97509561 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/97509561" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1704,7 +1704,7 @@
<div class="artist-media">
<img src=/images/Katahdid.jpg_resized.png></img>
<img src="/images/Katahdid.jpg_resized.png" />
</div>
@ -1718,11 +1718,11 @@
<a class="button hvr-sweep-to-top" href=http://www.taylordunne.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.taylordunne.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/61122274 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/61122274" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1747,8 +1747,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/09/19/047.html>#47: September 19th, 2015 Scope @ Clujotronic</a>
<a class="button hvr-sweep-to-top right" href=/spektrum/2015/10/09/048s.html>#1: October 9th, 2015 A-li-ce / Swub, Klara Ravat / Circuit Splash #47</a>
<a class="button hvr-sweep-to-top left" href="/session/2015/09/19/047.html">#47: September 19th, 2015 Scope @ Clujotronic</a>
<a class="button hvr-sweep-to-top right" href="/spektrum/2015/10/09/048s.html">#1: October 9th, 2015 A-li-ce / Swub, Klara Ravat / Circuit Splash #47</a>
</div>

View file

@ -8,9 +8,9 @@
<title>049</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/11/12/049.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2015/11/12/049.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1616,9 +1616,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com/ target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com/" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/768163763293618/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/768163763293618/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1634,7 +1634,7 @@
<div class="artist-media">
<img src=/images/MXZEHN_Bild_11.jpg_resized.png></img>
<img src="/images/MXZEHN_Bild_11.jpg_resized.png" />
</div>
@ -1648,11 +1648,11 @@
<a class="button hvr-sweep-to-top" href=http://www.mxzehn.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.mxzehn.de" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/113176356 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/113176356" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1666,7 +1666,7 @@
<div class="artist-media">
<img src=/images/a_spectrum_retina.png__1434x376_q85_crop_subsampling-2_upscale.jpg_resized.png></img>
<img src="/images/a_spectrum_retina.png__1434x376_q85_crop_subsampling-2_upscale.jpg_resized.png" />
</div>
@ -1680,7 +1680,7 @@
<a class="button hvr-sweep-to-top" href=http://www.mellisonic.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.mellisonic.com" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1695,7 +1695,7 @@
<div class="artist-media">
<img src=/images/pressphoto-sebastianarnold-2014-01-300dpi.jpg_resized.png></img>
<img src="/images/pressphoto-sebastianarnold-2014-01-300dpi.jpg_resized.png" />
</div>
@ -1709,7 +1709,7 @@
<a class="button hvr-sweep-to-top" href=http://www.sebastian-arnold.net target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.sebastian-arnold.net" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1735,8 +1735,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/spektrum/2015/10/09/048s.html>#1: October 9th, 2015 A-li-ce / Swub, Klara Ravat / Circuit Splash #47</a>
<a class="button hvr-sweep-to-top right" href=/session/2015/12/10/050.html>#50: December 10th, 2015 050</a>
<a class="button hvr-sweep-to-top left" href="/spektrum/2015/10/09/048s.html">#1: October 9th, 2015 A-li-ce / Swub, Klara Ravat / Circuit Splash #47</a>
<a class="button hvr-sweep-to-top right" href="/session/2015/12/10/050.html">#50: December 10th, 2015 050</a>
</div>

View file

@ -8,9 +8,9 @@
<title>050</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2015/12/10/050.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2015/12/10/050.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1614,9 +1614,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com/ target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com/" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1524292811222238/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1524292811222238/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1632,7 +1632,7 @@
<div class="artist-media">
<img src=/images/COVER_1280.jpg_resized.png></img>
<img src="/images/COVER_1280.jpg_resized.png" />
</div>
@ -1646,11 +1646,11 @@
<a class="button hvr-sweep-to-top" href=http://www.defasten.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.defasten.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/120501790 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/120501790" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1664,7 +1664,7 @@
<div class="artist-media">
<img src=/images/patch_hda_x.jpg_resized.png></img>
<img src="/images/patch_hda_x.jpg_resized.png" />
</div>
@ -1678,7 +1678,7 @@
<a class="button hvr-sweep-to-top" href=http://mirkopetrovich.tumblr.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://mirkopetrovich.tumblr.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1693,7 +1693,7 @@
<div class="artist-media">
<img src=/images/sehi007-copy-2.jpg_resized.png></img>
<img src="/images/sehi007-copy-2.jpg_resized.png" />
</div>
@ -1707,7 +1707,7 @@
<a class="button hvr-sweep-to-top" href=www.nataliasookias.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="www.nataliasookias.com" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1733,8 +1733,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/11/12/049.html>#49: November 12th, 2015 049</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/01/14/051.html>#51: January 14th, 2016 051</a>
<a class="button hvr-sweep-to-top left" href="/session/2015/11/12/049.html">#49: November 12th, 2015 049</a>
<a class="button hvr-sweep-to-top right" href="/session/2016/01/14/051.html">#51: January 14th, 2016 051</a>
</div>

View file

@ -8,9 +8,9 @@
<title>051</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/01/14/051.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2016/01/14/051.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1622,9 +1622,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com/ target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com/" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/229898977341625/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/229898977341625/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1640,7 +1640,7 @@
<div class="artist-media">
<img src=/images/RaumZeitPiraten_BW_PORTRAIT.jpg_resized.png></img>
<img src="/images/RaumZeitPiraten_BW_PORTRAIT.jpg_resized.png" />
</div>
@ -1654,11 +1654,11 @@
<a class="button hvr-sweep-to-top" href=http://www.raumzeitpiraten.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.raumzeitpiraten.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/145085208 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/145085208" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1672,7 +1672,7 @@
<div class="artist-media">
<img src=/images/Bilder_einer_Ausstellung_1843_WSpahn.JPG_resized.png></img>
<img src="/images/Bilder_einer_Ausstellung_1843_WSpahn.JPG_resized.png" />
</div>
@ -1686,11 +1686,11 @@
<a class="button hvr-sweep-to-top" href=http://wolfgang-spahn.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://wolfgang-spahn.de" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/85103965 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/85103965" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1704,7 +1704,7 @@
<div class="artist-media">
<img src=/images/marco-donnarumma_spectrumNYC_oct2014c_ugo-dallaporta.jpg_resized.png></img>
<img src="/images/marco-donnarumma_spectrumNYC_oct2014c_ugo-dallaporta.jpg_resized.png" />
</div>
@ -1718,11 +1718,11 @@
<a class="button hvr-sweep-to-top" href=http://marcodonnarumma.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://marcodonnarumma.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/20889787 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/20889787" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1747,8 +1747,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2015/12/10/050.html>#50: December 10th, 2015 050</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/02/11/052.html>#52: February 11th, 2016 052</a>
<a class="button hvr-sweep-to-top left" href="/session/2015/12/10/050.html">#50: December 10th, 2015 050</a>
<a class="button hvr-sweep-to-top right" href="/session/2016/02/11/052.html">#52: February 11th, 2016 052</a>
</div>

View file

@ -8,9 +8,9 @@
<title>052</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/02/11/052.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2016/02/11/052.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1624,9 +1624,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com/ target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com/" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/913470562055147/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/913470562055147/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1642,7 +1642,7 @@
<div class="artist-media">
<img src=/images/lucas_gutierrez.jpg_resized.png></img>
<img src="/images/lucas_gutierrez.jpg_resized.png" />
</div>
@ -1656,7 +1656,7 @@
<a class="button hvr-sweep-to-top" href=http://www.lucasgutierrez.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.lucasgutierrez.com" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1671,7 +1671,7 @@
<div class="artist-media">
<img src=/images/Front_Cut_Close.png_resized.png></img>
<img src="/images/Front_Cut_Close.png_resized.png" />
</div>
@ -1685,11 +1685,11 @@
<a class="button hvr-sweep-to-top" href=http://www.martinbackes.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.martinbackes.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/133428328 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/133428328" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1703,7 +1703,7 @@
<div class="artist-media">
<img src=/images/DSC_031502-460x350.png_resized.png></img>
<img src="/images/DSC_031502-460x350.png_resized.png" />
</div>
@ -1717,11 +1717,11 @@
<a class="button hvr-sweep-to-top" href=http://www.christin-marczinzik.de/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.christin-marczinzik.de/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/119068455 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/119068455" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1746,8 +1746,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/01/14/051.html>#51: January 14th, 2016 051</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/03/10/053.html>#53: March 10th, 2016 053</a>
<a class="button hvr-sweep-to-top left" href="/session/2016/01/14/051.html">#51: January 14th, 2016 051</a>
<a class="button hvr-sweep-to-top right" href="/session/2016/03/10/053.html">#53: March 10th, 2016 053</a>
</div>

View file

@ -8,9 +8,9 @@
<title>053</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/03/10/053.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2016/03/10/053.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1622,9 +1622,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com/ target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com/" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/476125705918575/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/476125705918575/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1640,7 +1640,7 @@
<div class="artist-media">
<img src=/images/grapheme_robert-seidel_museum-wiesbaden_01.jpg_resized.png></img>
<img src="/images/grapheme_robert-seidel_museum-wiesbaden_01.jpg_resized.png" />
</div>
@ -1654,11 +1654,11 @@
<a class="button hvr-sweep-to-top" href=http://www.robertseidel.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.robertseidel.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/148470865 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/148470865" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1672,7 +1672,7 @@
<div class="artist-media">
<img src=/images/f7dab3_60f05d67c41b474cadf6b40fb58e7551.jpg_resized.png></img>
<img src="/images/f7dab3_60f05d67c41b474cadf6b40fb58e7551.jpg_resized.png" />
</div>
@ -1686,11 +1686,11 @@
<a class="button hvr-sweep-to-top" href=http://www.carlachan.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.carlachan.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/138680101 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/138680101" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1704,7 +1704,7 @@
<div class="artist-media">
<img src=/images/planescapevanderkooy_12.jpg_resized.png></img>
<img src="/images/planescapevanderkooy_12.jpg_resized.png" />
</div>
@ -1719,11 +1719,11 @@ Wolfgang Bittner (AT) is a visual artist working in the field video, photography
<a class="button hvr-sweep-to-top" href=http://plane-scape.net target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://plane-scape.net" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/138604143 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/138604143" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1748,8 +1748,8 @@ Wolfgang Bittner (AT) is a visual artist working in the field video, photography
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/02/11/052.html>#52: February 11th, 2016 052</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/04/14/054.html>#54: April 14th, 2016 054</a>
<a class="button hvr-sweep-to-top left" href="/session/2016/02/11/052.html">#52: February 11th, 2016 052</a>
<a class="button hvr-sweep-to-top right" href="/session/2016/04/14/054.html">#54: April 14th, 2016 054</a>
</div>

View file

@ -8,9 +8,9 @@
<title>054</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/04/14/054.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2016/04/14/054.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1614,9 +1614,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com/ target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com/" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/154235048305222/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/154235048305222/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1632,7 +1632,7 @@
<div class="artist-media">
<img src=/images/Koolik.jpg_resized.png></img>
<img src="/images/Koolik.jpg_resized.png" />
</div>
@ -1646,11 +1646,11 @@
<a class="button hvr-sweep-to-top" href=https://www.facebook.com/koolik.melts.your.face/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="https://www.facebook.com/koolik.melts.your.face/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/137478468 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/137478468" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1664,7 +1664,7 @@
<div class="artist-media">
<img src=/images/Ballet.jpg_resized.png></img>
<img src="/images/Ballet.jpg_resized.png" />
</div>
@ -1678,7 +1678,7 @@
<a class="button hvr-sweep-to-top" href=http://sicilianocontemporaryballet.com/index.html target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://sicilianocontemporaryballet.com/index.html" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1693,7 +1693,7 @@
<div class="artist-media">
<img src=/images/Kalma.jpg_resized.png></img>
<img src="/images/Kalma.jpg_resized.png" />
</div>
@ -1707,11 +1707,11 @@
<a class="button hvr-sweep-to-top" href=http://www.kalmalab.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.kalmalab.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/153002132 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/153002132" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1736,8 +1736,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/03/10/053.html>#53: March 10th, 2016 053</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/05/12/055.html>#55: May 12th, 2016 055</a>
<a class="button hvr-sweep-to-top left" href="/session/2016/03/10/053.html">#53: March 10th, 2016 053</a>
<a class="button hvr-sweep-to-top right" href="/session/2016/05/12/055.html">#55: May 12th, 2016 055</a>
</div>

View file

@ -8,9 +8,9 @@
<title>055</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/05/12/055.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2016/05/12/055.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1622,9 +1622,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com/ target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com/" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1219587878052194/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1219587878052194/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1640,7 +1640,7 @@
<div class="artist-media">
<img src=/images/11391117_1153538288005410_1868394068597484897_n.jpg_resized.png></img>
<img src="/images/11391117_1153538288005410_1868394068597484897_n.jpg_resized.png" />
</div>
@ -1654,11 +1654,11 @@
<a class="button hvr-sweep-to-top" href=http://drawnsound.org/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://drawnsound.org/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/137478468 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/137478468" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1677,7 +1677,7 @@
<div class="artist-media">
<img src=/images/latllong_1_1920-1116x1116.jpg_resized.png></img>
<img src="/images/latllong_1_1920-1116x1116.jpg_resized.png" />
</div>
@ -1691,7 +1691,7 @@
<a class="button hvr-sweep-to-top" href=http://www.schnellebuntebilder.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.schnellebuntebilder.de" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1706,7 +1706,7 @@
<div class="artist-media">
<img src=/images/160501_TYCHO_Image_02.jpg_resized.png></img>
<img src="/images/160501_TYCHO_Image_02.jpg_resized.png" />
</div>
@ -1720,11 +1720,11 @@
<a class="button hvr-sweep-to-top" href=http://lacunalab.org target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://lacunalab.org" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/164922524 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/164922524" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1754,8 +1754,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/04/14/054.html>#54: April 14th, 2016 054</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/06/11/056.html>#56: June 11, 2016 Scope @ MIRA Berlin</a>
<a class="button hvr-sweep-to-top left" href="/session/2016/04/14/054.html">#54: April 14th, 2016 054</a>
<a class="button hvr-sweep-to-top right" href="/session/2016/06/11/056.html">#56: June 11, 2016 Scope @ MIRA Berlin</a>
</div>

View file

@ -8,9 +8,9 @@
<title>Scope @ MIRA Berlin</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/06/11/056.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2016/06/11/056.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1639,9 +1639,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href= target="_blank">Funkhaus Berlin</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="" target="_blank">Funkhaus Berlin</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1164434770287133/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1164434770287133/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1657,7 +1657,7 @@
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1677,7 +1677,7 @@
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1688,7 +1688,7 @@
<a class="button hvr-sweep-to-top" href=http://onionlab.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://onionlab.com" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1708,7 +1708,7 @@
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1719,7 +1719,7 @@
<a class="button hvr-sweep-to-top" href=http://marijabozinovskajones.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://marijabozinovskajones.com" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1739,7 +1739,7 @@
<div class="artist-media">
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
</div>
@ -1750,7 +1750,7 @@
<a class="button hvr-sweep-to-top" href=http://carlachan.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://carlachan.com" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1798,8 +1798,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/05/12/055.html>#55: May 12th, 2016 055</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/06/24/5year_scope.html>#7: June 24th, 2016 Scope 5th anniversary party</a>
<a class="button hvr-sweep-to-top left" href="/session/2016/05/12/055.html">#55: May 12th, 2016 055</a>
<a class="button hvr-sweep-to-top right" href="/session/2016/06/24/5year_scope.html">#7: June 24th, 2016 Scope 5th anniversary party</a>
</div>

View file

@ -8,9 +8,9 @@
<title>Scope 5th anniversary party</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/06/24/5year_scope.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2016/06/24/5year_scope.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1612,9 +1612,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1573616716269685/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1573616716269685/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1630,7 +1630,7 @@
<div class="artist-media">
<img src=/images/tumblr_nd6o8qpJhM1tbqx8zo5_r1_1280.jpg_resized.png></img>
<img src="/images/tumblr_nd6o8qpJhM1tbqx8zo5_r1_1280.jpg_resized.png" />
</div>
@ -1644,7 +1644,7 @@
<a class="button hvr-sweep-to-top" href=http://just-k.info/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://just-k.info/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1659,7 +1659,7 @@
<div class="artist-media">
<img src=/images/tumblr_static_95fb8r5akqo04084wog48co0c.jpg_resized.png></img>
<img src="/images/tumblr_static_95fb8r5akqo04084wog48co0c.jpg_resized.png" />
</div>
@ -1673,7 +1673,7 @@
<a class="button hvr-sweep-to-top" href=http://mirkopetrovich.tumblr.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://mirkopetrovich.tumblr.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1688,7 +1688,7 @@
<div class="artist-media">
<img src=/images/hands.png_resized.png></img>
<img src="/images/hands.png_resized.png" />
</div>
@ -1702,7 +1702,7 @@
<a class="button hvr-sweep-to-top" href=http://morphogenesis.eu/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://morphogenesis.eu/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1728,8 +1728,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/06/11/056.html>#56: June 11, 2016 Scope @ MIRA Berlin</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/09/08/058.html>#58: September 08th, 2016 058</a>
<a class="button hvr-sweep-to-top left" href="/session/2016/06/11/056.html">#56: June 11, 2016 Scope @ MIRA Berlin</a>
<a class="button hvr-sweep-to-top right" href="/session/2016/09/08/058.html">#58: September 08th, 2016 058</a>
</div>

View file

@ -8,9 +8,9 @@
<title>058</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/09/08/058.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2016/09/08/058.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1616,9 +1616,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1179395662123008/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1179395662123008/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1634,7 +1634,7 @@
<div class="artist-media">
<img src=http://www.darsha.org/darsha/media/DarshaHewitt_Sideman5000_3-800x550.jpg></img>
<img src="http://www.darsha.org/darsha/media/DarshaHewitt_Sideman5000_3-800x550.jpg" />
</div>
@ -1648,11 +1648,11 @@
<a class="button hvr-sweep-to-top" href=http://www.darsha.org target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.darsha.org" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/140519312 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/140519312" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1666,7 +1666,7 @@
<div class="artist-media">
<img src=http://rijnieks.lv/temp/projection-mapping-w-rpi.jpg></img>
<img src="http://rijnieks.lv/temp/projection-mapping-w-rpi.jpg" />
</div>
@ -1680,7 +1680,7 @@
<a class="button hvr-sweep-to-top" href=http://rijnieks.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://rijnieks.com" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1695,7 +1695,7 @@
<div class="artist-media">
<img src=http://servando.teks.no/?start.head.140586905151></img>
<img src="http://servando.teks.no/?start.head.140586905151" />
</div>
@ -1709,7 +1709,7 @@
<a class="button hvr-sweep-to-top" href=http://servando.teks.no target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://servando.teks.no" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1735,8 +1735,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/06/24/5year_scope.html>#7: June 24th, 2016 Scope 5th anniversary party</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/10/13/059.html>#59: October 13th, 2016 059</a>
<a class="button hvr-sweep-to-top left" href="/session/2016/06/24/5year_scope.html">#7: June 24th, 2016 Scope 5th anniversary party</a>
<a class="button hvr-sweep-to-top right" href="/session/2016/10/13/059.html">#59: October 13th, 2016 059</a>
</div>

View file

@ -8,9 +8,9 @@
<title>059</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/10/13/059.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2016/10/13/059.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1624,9 +1624,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/317478721955752/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/317478721955752/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1642,7 +1642,7 @@
<div class="artist-media">
<img src=/images/gajek.jpg></img>
<img src="/images/gajek.jpg" />
</div>
@ -1656,7 +1656,7 @@
<a class="button hvr-sweep-to-top" href=http://www.agnieszkagajewska.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.agnieszkagajewska.com" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1676,7 +1676,7 @@
<div class="artist-media">
<img src=/images/martin_romeo.jpeg></img>
<img src="/images/martin_romeo.jpeg" />
</div>
@ -1690,11 +1690,11 @@
<a class="button hvr-sweep-to-top" href=http://www.martinromeo.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.martinromeo.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/144276452 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/144276452" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1713,7 +1713,7 @@
<div class="artist-media">
<img src=http://flux.vision/library/moam_1.jpg></img>
<img src="http://flux.vision/library/moam_1.jpg" />
</div>
@ -1727,11 +1727,11 @@
<a class="button hvr-sweep-to-top" href=http://flux.vision/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://flux.vision/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/157625424 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/157625424" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1761,8 +1761,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/09/08/058.html>#58: September 08th, 2016 058</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/11/10/060.html>#60: November 10th, 2016 060</a>
<a class="button hvr-sweep-to-top left" href="/session/2016/09/08/058.html">#58: September 08th, 2016 058</a>
<a class="button hvr-sweep-to-top right" href="/session/2016/11/10/060.html">#60: November 10th, 2016 060</a>
</div>

View file

@ -8,9 +8,9 @@
<title>060</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/11/10/060.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2016/11/10/060.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1598,9 +1598,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/200344513739494/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/200344513739494/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1616,7 +1616,7 @@
<div class="artist-media">
<img src=/images/shockwaves.jpg></img>
<img src="/images/shockwaves.jpg" />
</div>
@ -1630,7 +1630,7 @@
<a class="button hvr-sweep-to-top" href=http://www.shockwavesthemovie.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.shockwavesthemovie.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1656,8 +1656,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/10/13/059.html>#59: October 13th, 2016 059</a>
<a class="button hvr-sweep-to-top right" href=/session/2016/12/08/061.html>#61: December 8th, 2016 061</a>
<a class="button hvr-sweep-to-top left" href="/session/2016/10/13/059.html">#59: October 13th, 2016 059</a>
<a class="button hvr-sweep-to-top right" href="/session/2016/12/08/061.html">#61: December 8th, 2016 061</a>
</div>

View file

@ -8,9 +8,9 @@
<title>061</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2016/12/08/061.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2016/12/08/061.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1624,9 +1624,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/879280745505899/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/879280745505899/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1642,7 +1642,7 @@
<div class="artist-media">
<img src=/images/susisie_about_4.jpg></img>
<img src="/images/susisie_about_4.jpg" />
</div>
@ -1656,11 +1656,11 @@
<a class="button hvr-sweep-to-top" href=http://www.susisie.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.susisie.de" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/94338566 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/94338566" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1679,7 +1679,7 @@
<div class="artist-media">
<img src=/images/quadratureportrait.jpg></img>
<img src="/images/quadratureportrait.jpg" />
</div>
@ -1693,11 +1693,11 @@
<a class="button hvr-sweep-to-top" href=http://www.quadrature.co/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.quadrature.co/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/121407749 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/121407749" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1716,7 +1716,7 @@
<div class="artist-media">
<img src=/images/doron_sadja.jpg></img>
<img src="/images/doron_sadja.jpg" />
</div>
@ -1730,11 +1730,11 @@
<a class="button hvr-sweep-to-top" href=http://www.doron.sadja.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.doron.sadja.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/113721594 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/113721594" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<div class="transp-bg padded">
@ -1764,8 +1764,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/11/10/060.html>#60: November 10th, 2016 060</a>
<a class="button hvr-sweep-to-top right" href=/session/2017/01/28/Vorspiel.html>#8: January 28th, 2017 Transmediale Vorspiel special event</a>
<a class="button hvr-sweep-to-top left" href="/session/2016/11/10/060.html">#60: November 10th, 2016 060</a>
<a class="button hvr-sweep-to-top right" href="/session/2017/01/28/Vorspiel.html">#8: January 28th, 2017 Transmediale Vorspiel special event</a>
</div>

View file

@ -8,9 +8,9 @@
<title>Transmediale Vorspiel special event</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2017/01/28/Vorspiel.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2017/01/28/Vorspiel.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1598,9 +1598,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1360164784047988/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1360164784047988/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1616,7 +1616,7 @@
<div class="artist-media">
<img src=/images/Banner.jpg></img>
<img src="/images/Banner.jpg" />
</div>
@ -1630,7 +1630,7 @@
<a class="button hvr-sweep-to-top" href=https://vorspiel.transmediale.de/#overlay=node/38038/modal target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="https://vorspiel.transmediale.de/#overlay=node/38038/modal" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1656,8 +1656,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2016/12/08/061.html>#61: December 8th, 2016 061</a>
<a class="button hvr-sweep-to-top right" href=/session/2017/02/09/062.html>#62: February 09th, 2017 062</a>
<a class="button hvr-sweep-to-top left" href="/session/2016/12/08/061.html">#61: December 8th, 2016 061</a>
<a class="button hvr-sweep-to-top right" href="/session/2017/02/09/062.html">#62: February 09th, 2017 062</a>
</div>

View file

@ -8,9 +8,9 @@
<title>062</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2017/02/09/062.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2017/02/09/062.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1605,9 +1605,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/1216375548482496/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/1216375548482496/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1623,7 +1623,7 @@
<div class="artist-media">
<img src=http://panke.gallery/img/FlyerTest.png></img>
<img src="http://panke.gallery/img/FlyerTest.png" />
</div>
@ -1637,7 +1637,7 @@
<a class="button hvr-sweep-to-top" href=http://www.curatingyoutube.net target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.curatingyoutube.net" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1652,7 +1652,7 @@
<div class="artist-media">
<img src=http://fionavalentinethomann.com/upload/file/skin/skin%2023%20-%20copie.jpg></img>
<img src="http://fionavalentinethomann.com/upload/file/skin/skin%2023%20-%20copie.jpg" />
</div>
@ -1666,11 +1666,11 @@
<a class="button hvr-sweep-to-top" href=http://www.fionavalentinethomann.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.fionavalentinethomann.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/183458656 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/183458656" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1695,8 +1695,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2017/01/28/Vorspiel.html>#8: January 28th, 2017 Transmediale Vorspiel special event</a>
<a class="button hvr-sweep-to-top right" href=/session/2017/03/09/063.html>#63: March 09th, 2017 063</a>
<a class="button hvr-sweep-to-top left" href="/session/2017/01/28/Vorspiel.html">#8: January 28th, 2017 Transmediale Vorspiel special event</a>
<a class="button hvr-sweep-to-top right" href="/session/2017/03/09/063.html">#63: March 09th, 2017 063</a>
</div>

View file

@ -8,9 +8,9 @@
<title>063</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2017/03/09/063.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2017/03/09/063.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1612,9 +1612,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/165734697268218/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/165734697268218/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1630,7 +1630,7 @@
<div class="artist-media">
<img src=images/gene_kogan.jpg></img>
<img src="images/gene_kogan.jpg" />
</div>
@ -1644,11 +1644,11 @@
<a class="button hvr-sweep-to-top" href=http://www.genekogan.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.genekogan.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/139123754 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/139123754" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1662,7 +1662,7 @@
<div class="artist-media">
<img src=http://www.margheritapevere.com/wp-content/uploads/2015/10/Pevere_Growing-cellulose-7_500px-1.jpg></img>
<img src="http://www.margheritapevere.com/wp-content/uploads/2015/10/Pevere_Growing-cellulose-7_500px-1.jpg" />
</div>
@ -1676,11 +1676,11 @@
<a class="button hvr-sweep-to-top" href=http://www.margheritapevere.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.margheritapevere.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/193252376 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/193252376" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1694,7 +1694,7 @@
<div class="artist-media">
<img src=https://static1.squarespace.com/static/53015de3e4b0c7fb3f1acc73/53016447e4b098d249d2083c/530166b6e4b02368396c9a3c/1431963107654/Sonata+I.jpg?format=1000w></img>
<img src="https://static1.squarespace.com/static/53015de3e4b0c7fb3f1acc73/53016447e4b098d249d2083c/530166b6e4b02368396c9a3c/1431963107654/Sonata+I.jpg?format=1000w" />
</div>
@ -1708,11 +1708,11 @@
<a class="button hvr-sweep-to-top" href=http://www.samhertzsound.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.samhertzsound.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/132278405 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/132278405" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1737,8 +1737,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2017/02/09/062.html>#62: February 09th, 2017 062</a>
<a class="button hvr-sweep-to-top right" href=/session/2017/04/13/064.html>#64: April 13th, 2017 064</a>
<a class="button hvr-sweep-to-top left" href="/session/2017/02/09/062.html">#62: February 09th, 2017 062</a>
<a class="button hvr-sweep-to-top right" href="/session/2017/04/13/064.html">#64: April 13th, 2017 064</a>
</div>

View file

@ -8,9 +8,9 @@
<title>064</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2017/04/13/064.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2017/04/13/064.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1616,9 +1616,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/749904948504764/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/749904948504764/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1634,7 +1634,7 @@
<div class="artist-media">
<img src=https://scontent-fra3-1.xx.fbcdn.net/v/t1.0-9/16195545_963675530400894_2792931444342232894_n.jpg?oh=5df07a3f76b43537290df469a674ae68&oe=594F4125></img>
<img src="https://scontent-fra3-1.xx.fbcdn.net/v/t1.0-9/16195545_963675530400894_2792931444342232894_n.jpg?oh=5df07a3f76b43537290df469a674ae68&oe=594F4125" />
</div>
@ -1648,7 +1648,7 @@
<a class="button hvr-sweep-to-top" href=http://iruuu.tk/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://iruuu.tk/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1663,7 +1663,7 @@
<div class="artist-media">
<img src=images/Vera_Kochubey.jpg></img>
<img src="images/Vera_Kochubey.jpg" />
</div>
@ -1677,11 +1677,11 @@
<a class="button hvr-sweep-to-top" href=https://www.verakochubey.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="https://www.verakochubey.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/193252376 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/193252376" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1695,7 +1695,7 @@
<div class="artist-media">
<img src=images/sc_img_hiroshi.png></img>
<img src="images/sc_img_hiroshi.png" />
</div>
@ -1709,11 +1709,11 @@
<a class="button hvr-sweep-to-top" href=http://dominofactory.net target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://dominofactory.net" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/79464772 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/79464772" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1755,8 +1755,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2017/03/09/063.html>#63: March 09th, 2017 063</a>
<a class="button hvr-sweep-to-top right" href=/session/2017/05/11/065.html>#65: May 11th, 2017 065</a>
<a class="button hvr-sweep-to-top left" href="/session/2017/03/09/063.html">#63: March 09th, 2017 063</a>
<a class="button hvr-sweep-to-top right" href="/session/2017/05/11/065.html">#65: May 11th, 2017 065</a>
</div>

View file

@ -8,9 +8,9 @@
<title>065</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2017/05/11/065.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2017/05/11/065.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1612,9 +1612,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/266450967094992/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/266450967094992/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1630,7 +1630,7 @@
<div class="artist-media">
<img src=images/miguel_azuaga.jpg></img>
<img src="images/miguel_azuaga.jpg" />
</div>
@ -1644,11 +1644,11 @@
<a class="button hvr-sweep-to-top" href=http://www.miguelazuaga.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.miguelazuaga.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/206700038 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/206700038" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1662,7 +1662,7 @@
<div class="artist-media">
<img src=http://silviolorusso.com/wp-content/uploads/2016/10/networked-optimization-300wpm-01_960.jpg></img>
<img src="http://silviolorusso.com/wp-content/uploads/2016/10/networked-optimization-300wpm-01_960.jpg" />
</div>
@ -1676,7 +1676,7 @@
<a class="button hvr-sweep-to-top" href=http://silviolorusso.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://silviolorusso.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1691,7 +1691,7 @@
<div class="artist-media">
<img src=https://www.avloops.com/sites/default/files/AVLoops-site-logo-beta1.png></img>
<img src="https://www.avloops.com/sites/default/files/AVLoops-site-logo-beta1.png" />
</div>
@ -1705,7 +1705,7 @@
<a class="button hvr-sweep-to-top" href=https://www.avloops.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="https://www.avloops.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1731,8 +1731,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2017/04/13/064.html>#64: April 13th, 2017 064</a>
<a class="button hvr-sweep-to-top right" href=/session/2017/05/31/066.html>#66: June 08th, 2017 Scope's summer BBQ 2017</a>
<a class="button hvr-sweep-to-top left" href="/session/2017/04/13/064.html">#64: April 13th, 2017 064</a>
<a class="button hvr-sweep-to-top right" href="/session/2017/05/31/066.html">#66: June 08th, 2017 Scope's summer BBQ 2017</a>
</div>

View file

@ -8,9 +8,9 @@
<title>Scope's summer BBQ 2017</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2017/05/31/066.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2017/05/31/066.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1611,9 +1611,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/425892924457559><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/425892924457559"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1629,7 +1629,7 @@
<div class="artist-media">
<img src=http://i.imgur.com/RyOwkFd.jpg></img>
<img src="http://i.imgur.com/RyOwkFd.jpg" />
</div>
@ -1643,11 +1643,11 @@
<a class="button hvr-sweep-to-top" href=http://www.kovacsodoherty.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.kovacsodoherty.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/197683644 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/197683644" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1661,7 +1661,7 @@
<div class="artist-media">
<img src=/images/raphael_de_courville_900x371.png></img>
<img src="/images/raphael_de_courville_900x371.png" />
</div>
@ -1675,11 +1675,11 @@
<a class="button hvr-sweep-to-top" href=http://neeeu.io target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://neeeu.io" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/155425764 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/155425764" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1704,8 +1704,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2017/05/11/065.html>#65: May 11th, 2017 065</a>
<a class="button hvr-sweep-to-top right" href=/session/2017/09/21/067.html>#67: September 21st, 2017 067</a>
<a class="button hvr-sweep-to-top left" href="/session/2017/05/11/065.html">#65: May 11th, 2017 065</a>
<a class="button hvr-sweep-to-top right" href="/session/2017/09/21/067.html">#67: September 21st, 2017 067</a>
</div>

View file

@ -8,9 +8,9 @@
<title>067</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2017/09/21/067.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2017/09/21/067.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1605,9 +1605,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/151264398794110><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/151264398794110"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1623,7 +1623,7 @@
<div class="artist-media">
<img src=/images/autr.jpg></img>
<img src="/images/autr.jpg" />
</div>
@ -1637,11 +1637,11 @@
<a class="button hvr-sweep-to-top" href=http://autr.tv/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://autr.tv/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/183219645 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/183219645" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1655,7 +1655,7 @@
<div class="artist-media">
<img src=/images/geso.jpg></img>
<img src="/images/geso.jpg" />
</div>
@ -1669,11 +1669,11 @@
<a class="button hvr-sweep-to-top" href=http://www.godisaglitch.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.godisaglitch.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/230649363 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/230649363" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1698,8 +1698,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2017/05/31/066.html>#66: June 08th, 2017 Scope's summer BBQ 2017</a>
<a class="button hvr-sweep-to-top right" href=/session/2017/10/12/068.html>#68: October 12th, 2017 068</a>
<a class="button hvr-sweep-to-top left" href="/session/2017/05/31/066.html">#66: June 08th, 2017 Scope's summer BBQ 2017</a>
<a class="button hvr-sweep-to-top right" href="/session/2017/10/12/068.html">#68: October 12th, 2017 068</a>
</div>

View file

@ -8,9 +8,9 @@
<title>068</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2017/10/12/068.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2017/10/12/068.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1605,9 +1605,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/513088952376244><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/513088952376244"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1623,7 +1623,7 @@
<div class="artist-media">
<img src=/images/autre_part.jpg></img>
<img src="/images/autre_part.jpg" />
</div>
@ -1637,11 +1637,11 @@
<a class="button hvr-sweep-to-top" href=http://poissonsmorts.com/fr/video-live target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://poissonsmorts.com/fr/video-live" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/54889287 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/54889287" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1655,7 +1655,7 @@
<div class="artist-media">
<img src=/images/Paris_Karimi_Kobou.png></img>
<img src="/images/Paris_Karimi_Kobou.png" />
</div>
@ -1669,11 +1669,11 @@
<a class="button hvr-sweep-to-top" href=http://parisakarimi.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://parisakarimi.de" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/201665606 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/201665606" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1698,8 +1698,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2017/09/21/067.html>#67: September 21st, 2017 067</a>
<a class="button hvr-sweep-to-top right" href=/session/2017/11/09/069.html>#69: November 9th, 2017 069</a>
<a class="button hvr-sweep-to-top left" href="/session/2017/09/21/067.html">#67: September 21st, 2017 067</a>
<a class="button hvr-sweep-to-top right" href="/session/2017/11/09/069.html">#69: November 9th, 2017 069</a>
</div>

View file

@ -8,9 +8,9 @@
<title>069</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2017/11/09/069.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2017/11/09/069.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1607,9 +1607,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/510739535967886><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/510739535967886"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1625,7 +1625,7 @@
<div class="artist-media">
<img src=/images/2-room-Pipes-v3_800.jpg></img>
<img src="/images/2-room-Pipes-v3_800.jpg" />
</div>
@ -1639,11 +1639,11 @@
<a class="button hvr-sweep-to-top" href=http://florence-to.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://florence-to.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/220800211 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/220800211" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1657,7 +1657,7 @@
<div class="artist-media">
<img src=/images/Profile2.jpg></img>
<img src="/images/Profile2.jpg" />
</div>
@ -1671,11 +1671,11 @@
<a class="button hvr-sweep-to-top" href=http://www.cristinatarquini.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.cristinatarquini.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/210559484 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/210559484" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1700,8 +1700,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2017/10/12/068.html>#68: October 12th, 2017 068</a>
<a class="button hvr-sweep-to-top right" href=/session/2017/12/14/070.html>#70: December 14th, 2017 070</a>
<a class="button hvr-sweep-to-top left" href="/session/2017/10/12/068.html">#68: October 12th, 2017 068</a>
<a class="button hvr-sweep-to-top right" href="/session/2017/12/14/070.html">#70: December 14th, 2017 070</a>
</div>

View file

@ -8,9 +8,9 @@
<title>070</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2017/12/14/070.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2017/12/14/070.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1598,9 +1598,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.pankeculture.com target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.pankeculture.com" target="_blank">Panke</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/917855741703423/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/917855741703423/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1616,7 +1616,7 @@
<div class="artist-media">
<img src=/images/kosmicafilmnight_720.jpg></img>
<img src="/images/kosmicafilmnight_720.jpg" />
</div>
@ -1630,7 +1630,7 @@
<a class="button hvr-sweep-to-top" href=http://www.kosmicainstitute.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.kosmicainstitute.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1656,8 +1656,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2017/11/09/069.html>#69: November 9th, 2017 069</a>
<a class="button hvr-sweep-to-top right" href=/spektrum/2018/01/12/070s.html>#2: January 12th, 2018 Scope Presents: Markus Mehr / Stefanie Sixt #406</a>
<a class="button hvr-sweep-to-top left" href="/session/2017/11/09/069.html">#69: November 9th, 2017 069</a>
<a class="button hvr-sweep-to-top right" href="/spektrum/2018/01/12/070s.html">#2: January 12th, 2018 Scope Presents: Markus Mehr / Stefanie Sixt #406</a>
</div>

View file

@ -8,9 +8,9 @@
<title>071</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2018/02/08/071.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2018/02/08/071.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1605,9 +1605,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.somos-arts.org/ target="_blank">SomoS</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.somos-arts.org/" target="_blank">SomoS</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/170077556942321/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/170077556942321/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1623,7 +1623,7 @@
<div class="artist-media">
<img src=/images/ali.m.demirel-disconnect-portrait_preview.jpeg></img>
<img src="/images/ali.m.demirel-disconnect-portrait_preview.jpeg" />
</div>
@ -1637,11 +1637,11 @@
<a class="button hvr-sweep-to-top" href=http://ali-m.de target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://ali-m.de" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/311351 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/311351" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1655,7 +1655,7 @@
<div class="artist-media">
<img src=/images/hmdmr.png></img>
<img src="/images/hmdmr.png" />
</div>
@ -1669,11 +1669,11 @@
<a class="button hvr-sweep-to-top" href=http://hmdmr.com target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://hmdmr.com" target="_blank"><i class="fa fa-link"></i> Website</a>
<br />
<a class="button hvr-sweep-to-top" href=https://vimeo.com/253349014 target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="https://vimeo.com/253349014" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
@ -1698,8 +1698,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/spektrum/2018/01/12/070s.html>#2: January 12th, 2018 Scope Presents: Markus Mehr / Stefanie Sixt #406</a>
<a class="button hvr-sweep-to-top right" href=/session/2018/02/08/072.html>#72: March 8th, 2018 072</a>
<a class="button hvr-sweep-to-top left" href="/spektrum/2018/01/12/070s.html">#2: January 12th, 2018 Scope Presents: Markus Mehr / Stefanie Sixt #406</a>
<a class="button hvr-sweep-to-top right" href="/session/2018/02/08/072.html">#72: March 8th, 2018 072</a>
</div>

View file

@ -8,9 +8,9 @@
<title>072</title>
<meta name="description" content="">
<link rel="canonical" href="http://scopesessions.org/session/2018/02/08/072.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://scopesessions.org /feed.json " />
<link rel="canonical" href="http://localhost:4000/session/2018/02/08/072.html">
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.xml " />
<link rel="alternate" type="application/atom+xml" title="Scope Sessions Artist talks & media salon" href="http://localhost:4000 /feed.json " />
<link rel="shortcut icon" href="favicon.ico" type="assets/favicon.ico" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css" />
@ -1555,10 +1555,10 @@
<h4><i class="fa fa-share-alt"></i> Spread the word</h4>
<div class="share-page">
<ul>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://scopesessions.org" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://scopesessions.org&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://twitter.com/intent/tweet?text=Scope Sessions Artist talks & media salon&url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://facebook.com/sharer.php?u=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="https://plus.google.com/share?url=http://localhost:4000" rel="nofollow" target="_blank" title="Share on Google+"><i class="fa fa-google-plus"></i></a></li>
<li><a class="button hvr-sweep-to-top" href="http://pinterest.com/pin/create/button/?url=http://localhost:4000&description=Scope Sessions Artist talks & media salon" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
@ -1583,7 +1583,7 @@
</div>
<div class="padded_vert">
<ul>
<ul>
@ -1605,9 +1605,9 @@
<div class="padded_vert">
<ul>
<li><a class="highlight button hvr-sweep-to-top" href=http://www.somos-arts.org/ target="_blank">SomoS</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="http://www.somos-arts.org/" target="_blank">SomoS</a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href=https://www.facebook.com/events/2071927626400595/><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="https://www.facebook.com/events/2071927626400595/"><i class="fa fa-facebook-square"></i></a></li>
</ul>
@ -1623,7 +1623,7 @@
<div class="artist-media">
<img src=/images/meehan.jpg></img>
<img src="/images/meehan.jpg" />
</div>
@ -1637,7 +1637,7 @@
<a class="button hvr-sweep-to-top" href=http://www.berlin-ism.com/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://www.berlin-ism.com/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1652,7 +1652,7 @@
<div class="artist-media">
<img src=/images/tarikdb-drewTysonCroppedSmall_preview.jpeg></img>
<img src="/images/tarikdb-drewTysonCroppedSmall_preview.jpeg" />
</div>
@ -1666,7 +1666,7 @@
<a class="button hvr-sweep-to-top" href=http://tarikbarri.nl/ target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="http://tarikbarri.nl/" target="_blank"><i class="fa fa-link"></i> Website</a>
@ -1692,8 +1692,8 @@
<h4>Discover more</h4>
<a class="button hvr-sweep-to-top left" href=/session/2018/02/08/071.html>#71: February 8th, 2018 071</a>
<a class="button hvr-sweep-to-top right" href=/session/2018/04/12/073.html>#73: April 12th, 2018 073</a>
<a class="button hvr-sweep-to-top left" href="/session/2018/02/08/071.html">#71: February 8th, 2018 071</a>
<a class="button hvr-sweep-to-top right" href="/session/2018/04/12/073.html">#73: April 12th, 2018 073</a>
</div>

Some files were not shown because too many files have changed in this diff Show more