forked from varia/varia.website
added the user condition event en
This commit is contained in:
parent
7aa2b8d3f8
commit
875b854091
BIN
content/images/the-user-condition_silvio-lorusso_2021-10.png
Normal file
BIN
content/images/the-user-condition_silvio-lorusso_2021-10.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 514 KiB |
18
content/the-user-condition-01-en.md
Normal file
18
content/the-user-condition-01-en.md
Normal file
@ -0,0 +1,18 @@
|
||||
Title: The User Condition 01
|
||||
Date: 2021-03-23
|
||||
Category: event
|
||||
Slug: usercond01
|
||||
lang: en
|
||||
event_start: 2021-03-23 18:00
|
||||
event_duration: 1h
|
||||
featured_image: images/the-user-condition_silvio-lorusso_2021-10.png
|
||||
|
||||
What are the conditions for a computer user to gain agency, defined here as the ability to evade automatisms? What is the user’s horizon of autonomy within a built world made of software programmed by somebody else, when its logic is made inaccessible in the name of convenience?
|
||||
|
||||
In the first event of The User Condition series, Silvio Lorusso will present his micro-interactive essay about computer agency and behavior (https://theusercondition.computer/). This presentation will also be a testing ground for the fresh narrowcast setup currently being developed at Varia. Don't miss!
|
||||
|
||||
---
|
||||
|
||||
**Date**: Tuesday, 23rd of March 2021<br>
|
||||
**Time**: 18:00h - 19:00h<br>
|
||||
**Location**: Online ([https://stream.vvvvvvaria.org/](https://stream.vvvvvvaria.org/)]
|
18
content/the-user-condition-01-nl.md
Normal file
18
content/the-user-condition-01-nl.md
Normal file
@ -0,0 +1,18 @@
|
||||
Title: The User Condition 01
|
||||
Date: 2021-03-23
|
||||
Category: event
|
||||
Slug: usercond01
|
||||
lang: nl
|
||||
event_start: 2021-03-23 18:00
|
||||
event_duration: 1h
|
||||
featured_image: images/the-user-condition_silvio-lorusso_2021-10.png
|
||||
|
||||
What are the conditions for a computer user to gain agency, defined here as the ability to evade automatisms? What is the user’s horizon of autonomy within a built world made of software programmed by somebody else, when its logic is made inaccessible in the name of convenience?
|
||||
|
||||
In the first event of The User Condition series, Silvio Lorusso will present his micro-interactive essay about computer agency and behavior (https://theusercondition.computer/). This presentation will also be a testing ground for the fresh narrowcast setup currently being developed at Varia. Don't miss!
|
||||
|
||||
---
|
||||
|
||||
**Date**: Tuesday, 23rd of March 2021<br>
|
||||
**Time**: 18:00h - 19:00h<br>
|
||||
**Location**: Online ([https://stream.vvvvvvaria.org/](https://stream.vvvvvvaria.org/)]
|
@ -6,7 +6,7 @@
|
||||
{% if p.title == 'curriculum' %}
|
||||
<div id="title">
|
||||
{{ p.content }}
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</header>
|
||||
@ -38,16 +38,17 @@
|
||||
<h2>{{glob.upcoming}}</h2>
|
||||
<hr>
|
||||
{% for article in articles_page.object_list %}
|
||||
{% set thumb_size = '/thumb' %}
|
||||
{% set thumb_size = '/thumb' %}
|
||||
{% if article.event_start %}
|
||||
{% set event_status = '' %}
|
||||
{% if article.event_start < article.date.now() %}
|
||||
{% set now = article.date.now() | string %}
|
||||
{% if article.event_start < now %}
|
||||
{% set event_status = ' past' %}
|
||||
{% endif %}
|
||||
{% if article.event_start >= article.date.now() %}
|
||||
{% if article.event_start >= now %}
|
||||
{% set event_status = ' current' %}
|
||||
{% set thumb_size = '/thumb2x' %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if event_status == ' current' %}
|
||||
<article class="hentry {{article.category}} current">
|
||||
@ -65,7 +66,7 @@
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="summary {{ article.category }}">{{ article.summary }}
|
||||
<span class="read_more">
|
||||
{% if DEFAULT_LANG == 'en' %}
|
||||
@ -94,23 +95,24 @@
|
||||
<h2>{{glob.past}}</h2>
|
||||
<hr>
|
||||
{% for article in articles_page.object_list %}
|
||||
{% set thumb_size = '/thumb' %}
|
||||
{% set thumb_size = '/thumb' %}
|
||||
{% if article.event_start %}
|
||||
{% set event_status = '' %}
|
||||
{% if article.event_start < article.date.now() %}
|
||||
{% set now = article.date.now() | string %}
|
||||
{% if article.event_start < now %}
|
||||
{% set event_status = ' past' %}
|
||||
{% endif %}
|
||||
{% if article.event_start >= article.date.now() %}
|
||||
{% if article.event_start >= now %}
|
||||
{% set event_status = ' current' %}
|
||||
{% set thumb_size = '/thumb2x' %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if event_status == ' past' %}
|
||||
<article class="hentry curriculum past">
|
||||
<div class="article-info">
|
||||
<span class="entry-title"><a href="/{% if article.lang == 'en' %}en/{% endif %}{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></span>
|
||||
<div class="event-details">
|
||||
{{ article.event_start | strftime('%d %B %Y') }}
|
||||
<!-- article.event_start | strftime('%d %B %Y') -->
|
||||
</div>
|
||||
<div class="featured-image current">
|
||||
<a href="/{% if article.lang == 'en' %}en/{% endif %}{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">
|
||||
|
Loading…
Reference in New Issue
Block a user