Dekonferencija

This commit is contained in:
Hugo 2024-06-23 22:24:28 +02:00
parent 037ddb0af6
commit e09641c01f

139
site/deconference.html Normal file
View File

@ -0,0 +1,139 @@
<!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 {
--light-text: #181715;
--light-bg: #ffffff;
--light-border: #181715;
--dark-text: #ffffff;
--dark-bg: #181715;
--dark-border: #ffffff;
--hightlight: #72dec2;
--border: var(--light-border);
--text: var(--light-text);
--bg: var(--light-bg);
}
@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(--light-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">Decentrala</a>, a Belgrade hackerspace. Deconference is concieved to be a platform for people to present and discuss ideas about decentralization in any sense of that word.</p>
<p></p>
<h2 id="wwhen-and-where"><a href="#when-and-where">When & Where?</a></h2>
<p>Deconforence will be held whole day on Sunday 15. September 2024, in Cultural Centar Magacin located in <a>Kraljevića Marka 4-8, Belgrade</a>. The day before, the social party will be hosted in <a href="https://dckrov.rs/">Community center Krov</a> located in <a>Kraljice Marije 47, Belgrade</a>.</p>
<h2 id="why"><a href="#why">Why?</a></h2>
<p>Decentrala was created by small group of enthusiasts gathered about idea of tehcnological decentralization. In last year and half, we organized more than 160 events: lectures, workshops, discussions, hackathons... with which we tried to democratize tehcnological knowlege, and eduacte people about privacy, open source, right to repair (and how to repair), cryptocurency... We didn't ever want to form opinions in invidiuals, we wanted to give them chance to be informed of alternatives and make a choice.</p>
<h2 id="who"><a href="#who">Who?</a></h2>
<p>Deconference is open platform for evryone who want to talk/demonstarte/discuss abot decentralization in any sense of that word. 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>Deconference is financed by private assets of organizators. Deconference, as any other Decentral works, is completly free for any visitor. Deconference can't pay any grants to lecturers/presenters.</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>