website for beta festival 2024
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

63 lines
3.7 KiB

{% extends "base.html" %}
{% block title %}{{ '| '+ title }}{% endblock %}
{% block content %}
<div id="main-wrapper">
{% include '_nav.html' %}
{% include '_list-header.html'%}
<div id="main-container">
<div id="list-info-container">
{% if title == 'Conferences'%}
<p class="list-info-text">Exploring the relationship between technology and power, Beta Festival’s 2024 conference explores how digital infrastructures and software have reshaped society, culture, and politics. Spanning two days, the event delves into the ways technology influences institutions, political interests, and economic and cultural practices. Bringing together artists, technologists, and researchers, the conference participants will question the forms of power and control embedded in digital infrastructures and explore strategies for redesigning these systems to meet societal demands for both individual and collective autonomy.</p>
<p class="list-info-text">On the first day, discussions will focus on the ethics of AI development, its impact on democracy, and the manipulation of political systems, as well as how artists are leveraging digital tools to resist surveillance and platform capitalism. The second day will explore the transformation of creative practices by these technologies, with sessions addressing copyright and intellectual property in the age of AI, the preservation of digital cultural memory, counter-archives, and new possibilities for immersive and interactive storytelling.</p>
<p class="list-info-text">Throughout the conference, keynote speakers Abeba Birhane, an accountability expert, and Kay Watson, a specialist in art and technology, will offer insights into how AI is reshaping society and culture, while exploring the limits and possibilities of individual and collective agency in this rapidly evolving digital landscape.</p>
{% endif %}
{% if title == 'Events'%}
<p class="list-info-text">Beta Festival will feature a variety of performances, workshops and discussions as part of this year's programme including collaborations with D.A.T.A., Base, Fire Station Artists Studios, Creative Futures Academy and Creative Sparks Fab Lab.</p>
<p class="list-info-text">We will also present Noire (France) in association with the French Embassy and Institut français, the Cannes award-winning immersive experience directed by Stéphane Foenkinos and Pierre-Alain Giraud, based on the work by Tania de Montaigne, produced by Novaya in partnership with the Centre Pompidou, co-produced with Flash Forward Entertainment.</p>
{% endif %}
{% if title == 'Exhibitions' %}
{% include '_ex.html' %}
{% endif %}
</div>
{% if title == 'Conferences' or title == 'Events'%}
<div id="list-container" class="fadeInUp-animation">
{% for event in content %}
<a href='/{{ title.lower() }}/{{ event.title }}'>
<div class="list">
<div class="list-image">
<img src="{{ event.image }}" alt="{{ event.title }}" loading="lazy">
<div class="list-image-overlay"></div>
</div>
<div class="list-title">{{ event.title }}</div>
<div class="list-artists">
<p>{{ event.artists | join(', ') }}</p>
</div>
<div class="list-details">
{% if event.dates %}
<div class="list-date">● {{ event.dates | join(', ') }}</div>
{% endif %}
{% if event.times %}
<div class="list-date">● {{ event.times | join(', ')}}</div>
{% endif %}
<div class="list-date">● {{ event.location[0] }}</div>
</div>
</div>
</a>
{% endfor %}
</div>
{% endif %}
</div>
</div>
<div id="container"></div>
<script type="module" src="{{ url_for('static', filename='js/list.js') }}"></script>
<script type="module" src="{{ url_for('static', filename='js/skybox.js') }}"></script>
{% endblock content %}