2
0
Fork 0

Merge branch 'dekonferencija'

This commit is contained in:
Hugo 2024-06-27 18:33:05 +02:00
parent 7e179c704c
commit 33c81b39d8
1 changed files with 143 additions and 0 deletions

143
site/deconference.html Normal file
View File

@ -0,0 +1,143 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
<title>Deconference</title>
<style>
:root {
--hightlight: #72dec2;
--text: #181715;
--bg: #ffffff;
}
@media screen and (prefers-color-scheme: dark) {
:root {
--text: #ffffff;
--bg: #181715;
}
}
@font-face {
font-family: "Iosevka";
src: url('/font/iosevka-regular.woff') format('woff');
}
body {
font-family: 'Iosevka';
font-size: 110%;
color: var(--text);
background: var(--bg);
}
main {
max-width: 52rem;
margin: 0 auto;
}
a,
a:visited {
text-decoration: underline;
color: var(--text);
&:hover {
background-color: var(--hightlight);
text-decoration: line-through var(--text);
cursor: pointer;
}
}
header {
user-select: none;
text-align: center;
}
h1 {
font-variant: small-caps;
letter-spacing: 0.3rem;
font-size: 4em;
margin: 3rem auto;
& > a {
text-decoration: none;
}
}
h2 {
font-variant: small-caps;
letter-spacing: 0.3rem;
& > a {
text-decoration: none;
}
}
p {
margin-left: 1rem;
text-align: justify;
}
details {
margin-left: 1rem;
}
footer {
border-top: 2px solid var(--text);
padding-top: 1rem;
max-width: 42rem;
margin: 2rem auto;
text-align: center;
& .links {
display: flex;
flex-direction: row;
gap: 2rem;
justify-content: center;
margin-top: 1rem;
}
}
</style>
</head>
<body>
<header>
<h1>Deconference</h1>
</header>
<main>
<h2 id="what"><a href="#what">What?</a></h2>
<p>Deconference is the first conference organized by <a href="https://dmz.rs">the Decentrala</a>, a Belgrade hackerspace. The Deconference is conceived to be a platform for people to present and discuss ideas about decentralization in any sense of that word.</p>
<p>If you ask us what <em>decentralization</em> is, we can't answer that. There is no Central Committee of Decentralization, that would define this process. Therefore, we would like to hear from you what you consider under this term.</p>
<h2 id="wwhen-and-where"><a href="#when-and-where">When & Where?</a></h2>
<p>The Deconforence will be held the whole day on Sunday 15. September 2024, in Cultural Centar Magacin located in <a href="https://osm.org/go/xf3Fz31te?node=1226456745">Kraljevića Marka 4-8, Belgrade</a>. The day before, the social party will be hosted in the <a href="https://dckrov.rs/">Community center Krov</a> located in <a href="https://osm.org/go/xf3HQQdIH">Kraljice Marije 47, Belgrade</a>.</p>
<h2 id="why"><a href="#why">Why?</a></h2>
<p>The Decentrala was created by a small group of enthusiasts gathered about the idea of technological decentralization. In the last year and a half, we organized more than 160 events: lectures, workshops, discussions, hackathons... with which we tried to democratize technological knowledge and educate people about privacy, open source, right to repair (and how to repair), digital assets, usage rights... Since day zero, we never wanted to force opinions on individuals, instead, we wanted to give them a chance to be informed of alternatives and make a choice for themselves.</p>
<p>We had the pleasure to chat with many visitors, many of them with backgrounds unrelated to technology. In our events and discussions with these interesting people, we realised that the idea of decentralization is much bigger than just "open technology". Many of today's activists and their organizations are fighting for some kind of decentralization. Therefore, we would like to hear stories about decentralization from different perspectives.</p>
<h2 id="who"><a href="#who">Who?</a></h2>
<p>Deconference is open platform for evryone who want to talk/demonstarte/discuss about decentralization. You can register your event on mail <a href="mailto:dekonferencija@dmz.rs">dekonferencija@dmz.rs</a> until the very day of the Deconference (15. September)</p>
<p>We will populate this section as we confirm topics.</p>
<h2 id="how"><a href="#how">How?</a></h2>
<p>The Deconference is financed by the private assets of organisers. Deconference, like any other Decentrala's work, is completely free for any visitor. Deconference can't pay any grants to lecturers/presenters.</p>
<p>The Decentrala accepts donations only from individuals.</p>
</main>
<footer>
<span class="links">
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="/img/cc-light.svg" alt="CreativeCommons"></a>
<a href="https://gitea.dmz.rs/Decentrala/website"><img src="/img/git-light.svg" alt="SourceCode"></a>
<a href="https://balkan.fedive.rs/@decentrala"><img src="/img/mastodon-light.svg" alt="Mastodon"></a>
</span>
</footer>
</body>
</html>