forked from varia/varia.website
user cond new attempt
This commit is contained in:
parent
a5704de11e
commit
e0def00bac
@ -3,6 +3,8 @@ Date: 2021-03-23
|
||||
Category: event
|
||||
Slug: usercond01
|
||||
lang: en
|
||||
event_start: 2021-03-23 18:00
|
||||
event_end: 2021-03-23 19:00
|
||||
featured_image: /images/user-cond-01.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?
|
||||
|
@ -3,6 +3,8 @@ Date: 2021-03-23
|
||||
Category: event
|
||||
Slug: usercond01
|
||||
lang: nl
|
||||
event_start: 2021-03-23 18:00
|
||||
event_end: 2021-03-23 19:00
|
||||
featured_image: /images//images/user-cond-01.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?
|
||||
|
@ -41,11 +41,10 @@
|
||||
{% set thumb_size = '/thumb' %}
|
||||
{% if article.event_start %}
|
||||
{% set event_status = '' %}
|
||||
{% set now = article.date.now() | string %}
|
||||
{% if article.event_start < now %}
|
||||
{% if article.event_start < article.date.now() %}
|
||||
{% set event_status = ' past' %}
|
||||
{% endif %}
|
||||
{% if article.event_start >= now %}
|
||||
{% if article.event_start >= article.date.now() %}
|
||||
{% set event_status = ' current' %}
|
||||
{% set thumb_size = '/thumb2x' %}
|
||||
{% endif %}
|
||||
@ -98,11 +97,10 @@
|
||||
{% set thumb_size = '/thumb' %}
|
||||
{% if article.event_start %}
|
||||
{% set event_status = '' %}
|
||||
{% set now = article.date.now() | string %}
|
||||
{% if article.event_start < now %}
|
||||
{% if article.event_start < article.date.now() %}
|
||||
{% set event_status = ' past' %}
|
||||
{% endif %}
|
||||
{% if article.event_start >= now %}
|
||||
{% if article.event_start >= article.date.now() %}
|
||||
{% set event_status = ' current' %}
|
||||
{% set thumb_size = '/thumb2x' %}
|
||||
{% endif %}
|
||||
@ -112,7 +110,7 @@
|
||||
<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