파일
members.lumbung.space/members_lumbung_space/templates/submit.html
T
cellarspoon a374b905ba
continuous-integration/drone/push Build is passing
nav refactor + welcome img
2022-01-13 09:35:17 +01:00

32 라인
2.6 KiB
HTML
Raw Blame 히스토리

이 파일에는 보이지 않는 유니코드 문자가 포함되어 있습니다
이 파일에는 우리 눈에는 보이지 않지만 컴퓨터에 의해 다르게 처리될 수 있는 보이지 않는 유니코드 문자가 포함되어 있습니다. 이것이 의도된 것이라고 생각하면 이 경고를 무시해도 됩니다. Escape 버튼을 눌러 보이지 않는 문자를 표시할 수 있습니다.
{% extends "base.html" %}
{% block content %}
{% if first_name %}
<div id="welcome-message">
<p>Welcome, Lumbungers!</p>
<div class="logo">
<img src="{{ url_for('static', path='svg/lumbung_space_logo.svg') }}" alt="lumbung.space logo">
</div>
<p>Thanks for joining {{ first_name }}!</p>
<p>lumbung.space is an experimental social and publishing platform by and for the lumbung artists and lumbung members. It is a (digital) living room for our collective lumbung building process that allows us to connect, support each other, and also share knowledge collectively. It is built on open platforms, cooperative governance, and as a community infrastructure meant for our practices to develop and thrive. As a project, lumbung.space is an experiment for artist-initiated digital platforms and part of the process towards documenta fifteen. After documenta—the strive is for lumbung.space to be sustained as a shared resources for the lumbung inter-lokal.</p>
<p>lumbung.space is a space for learning: currently, the working group is trying to find out what a social platform for a lumbung practice looks like; as we recognize that we don't want our practices to be subject to, or dependent upon extractive, exploitative digital infrastructures. Making lumbung.space to be a platform that is owned and operated by the community of users themselves: which means us! (and not a service that is run by a corporation). We are working with <a href="https://autonomic.zone">Autonomic Co-operative</a> who is part of the <a href="https://coopcloud.tech">Co-op Cloud</a> initiative where our learnings feedback into, allowing other collectives to set up similar infrastructures.</p>
<p>As it is a self-organized community infrastructure, we users are respecting the <a href="#TODO">lumbung.space community guidelines</a> and each of us is responsible for our behavior. Please kindly check <a href="https://panduan.lumbung.space">panduan.lumbung.space</a> to find more thorough documentation about lumbung.space.</p>
<p>We thank every lumbung.space user who has helped to make it a friendly and comfortable digital living room :)</p>
<p>Please visit <a href="https://members.lumbung.space">members.lumbung.space</a> to finish your account registration.</p>
<p>Warmest Regards, lumbung.space</p>
</div>
{% elif exception %}
<div>
<p>Woops, we're very sorry, something went wrong: {{ exception }}.</p>
<p>Please mail <a href="mailto:contact@lumbung.space">contact@lubmung.space</a> for help, please include the error message above. Thank you!</p>
</div>
{% endif %}
{% endblock %}