2019-02-27 10:01:48 +01:00
|
|
|
{% extends "en/base.html" %}
|
|
|
|
{% block title %}{% endblock %}
|
|
|
|
|
|
|
|
{% block search %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block manifesto %}
|
|
|
|
<div id="manifesto_content_wrapper">
|
2019-03-13 09:07:05 +01:00
|
|
|
{% if '.jpg' in link['iframe'] %}
|
2019-02-27 10:01:48 +01:00
|
|
|
<img src="{{ link }}" />
|
2019-03-07 23:37:37 +01:00
|
|
|
<br>
|
2019-03-13 09:07:05 +01:00
|
|
|
{% elif 'vimeo' in link['iframe'] %}
|
2019-02-27 10:01:48 +01:00
|
|
|
<iframe src="{{ link }}" width="600" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
|
2019-03-13 09:07:05 +01:00
|
|
|
<div><em>
|
|
|
|
every day, you willingly exchange personal data for custom convenience <br>
|
|
|
|
lurking behind these transactions, the corporatocracy maps out your every move in the name of security <br>
|
|
|
|
don't worry, we're on your side <br>
|
|
|
|
the hors will help you reclaim your life and reprogram the 1s and 0s that build our world <br>
|
|
|
|
to hack is to create <br>
|
|
|
|
what we do is self defense, self determin- [end of transmission] <br>
|
|
|
|
</em></div>
|
2019-02-27 10:01:48 +01:00
|
|
|
{% else %}
|
2019-03-13 09:07:05 +01:00
|
|
|
<iframe id="manifesto_content" src="{{ link['iframe'] }}"></iframe>
|
2019-02-27 10:01:48 +01:00
|
|
|
{% endif%}
|
2019-03-07 23:37:37 +01:00
|
|
|
<br>
|
2019-03-13 09:07:05 +01:00
|
|
|
<div><small style="font-size: 85%;">{{ link['display'] }}</small></div>
|
2019-02-27 10:01:48 +01:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|