Compare commits
19 Commits
aab7a34953
...
3ca8e2eef7
Author | SHA1 | Date |
---|---|---|
Luca | 3ca8e2eef7 | |
Luca | 427eff7c19 | |
Luca | ceeb9b934f | |
Luca | b1b8baaa03 | |
Luca | 9eca488f08 | |
Luca | 56e8617ef0 | |
Luca | 0873eb204e | |
Luca | 656b25e06d | |
Luca | c61c96fd8a | |
Luca | 887e1698c4 | |
Luca | 5a5f3efa9e | |
Luca | 1ad66bc1aa | |
Luca | f720e4b0cd | |
Luca | 95b294a934 | |
Luca | 91eb05833f | |
Luca | da2aae8e74 | |
Luca | 48ad445479 | |
Luca | 4f023f007f | |
Nils Steinger | bbadae19d1 |
|
@ -1,6 +1,7 @@
|
|||
$color-background-0: #272771;
|
||||
$color-background-100: #1d71b8;
|
||||
$color-burger: #ddd;
|
||||
$color-background-0: #00c8ff;
|
||||
$color-background-100: #bafdfe;
|
||||
$color-burger: #000;
|
||||
$color-highlight: #fff200;
|
||||
$color-link: #fff200;
|
||||
$color-text: #fff;
|
||||
$color-link: #000;
|
||||
$color-link-footer: #eee;
|
||||
$color-text: #000;
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
@font-face {
|
||||
font-family: "Bad Script";
|
||||
src: url(/BadScript-Regular.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Noto Sans";
|
||||
src: local("Noto Sans"), local("NotoSans-Regular"), url(/NotoSans-Regular.ttf);
|
||||
|
@ -9,12 +14,25 @@
|
|||
src: local("Noto Sans Bold"), local("NotoSans-Bold"), url(/NotoSans-Bold.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Noto Sans";
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: local("Noto Sans Bold Italic"), local("NotoSans-BoldItalic"), url(/NotoSans-BoldItalic.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Noto Sans";
|
||||
font-style: italic;
|
||||
src: local("Noto Sans Italic"), local("NotoSans-Italic"), url(/NotoSans-Italic.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Noto Sans Mono";
|
||||
font-weight: 500;
|
||||
src: local("Noto Sans Mono Medium"), local("NotoSansMono-Medium"), url(/NotoSansMono-Medium.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Noto Sans Mono";
|
||||
font-weight: 700;
|
||||
|
@ -22,6 +40,7 @@
|
|||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "OCR A";
|
||||
src: url(/OCRA.ttf), url(/OCRA.otf);
|
||||
font-family: "Noto Sans Mono";
|
||||
font-weight: 900;
|
||||
src: local("Noto Sans Mono Black"), local("NotoSansMono-Black"), url(/NotoSansMono-Black.ttf);
|
||||
}
|
||||
|
|
|
@ -1,14 +1 @@
|
|||
$footer-spacing: 200px;
|
||||
$footer-height: 200px;
|
||||
|
||||
//*
|
||||
$header-height: 200px;
|
||||
$header-spacing: 200px;
|
||||
$header-variant: header;
|
||||
/*/
|
||||
$header-height: 1000px;
|
||||
$header-spacing: 300px;
|
||||
$header-variant: header-tall;
|
||||
//*/
|
||||
|
||||
$stars-height: 1057px;
|
||||
$footer-height: 420px;
|
||||
|
|
|
@ -17,27 +17,12 @@ body {
|
|||
flex-direction: column;
|
||||
font-family: "Noto Sans", sans-serif;
|
||||
margin: 0 auto;
|
||||
min-height: unquote("max(100vh, #{$stars-height})");
|
||||
min-height: 100vh;
|
||||
max-width: $large;
|
||||
|
||||
main {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
@media screen and (min-width: $small) {
|
||||
&::before {
|
||||
background: url(/stars.svg) repeat-x top;
|
||||
clip-path: polygon(0 0, 100% 0, 100% 100%, calc(50% + #{$large * 0.5}) 100%, calc(50% + #{$large * 0.5}) $header-spacing, calc(50% - #{$large * 0.5}) $header-spacing, calc(50% - #{$large * 0.5}) 100%, 0 100%);
|
||||
content: '';
|
||||
display: block;
|
||||
height: $stars-height;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
header, footer {
|
||||
|
@ -51,14 +36,14 @@ header {
|
|||
margin-top: 1rem;
|
||||
|
||||
pre {
|
||||
font-family: "OCR A", "Noto Sans Mono", monospace;
|
||||
font-family: "Noto Sans Mono", monospace;
|
||||
font-size: 0.8rem;
|
||||
font-weight: bold;
|
||||
font-weight: 500;
|
||||
line-height: 1;
|
||||
user-select: none;
|
||||
|
||||
span {
|
||||
color: $color-highlight;
|
||||
font-weight: 900;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -93,20 +78,6 @@ header {
|
|||
|
||||
@media screen and (min-width: $small) {
|
||||
flex-wrap: nowrap;
|
||||
margin-top: $header-spacing;
|
||||
padding-top: 0.5rem;
|
||||
|
||||
&::before {
|
||||
background: url(/#{$header-variant}.svg) 50% 0% / auto $header-height no-repeat;
|
||||
content: '';
|
||||
display: block;
|
||||
height: $header-height;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
nav {
|
||||
flex-wrap: wrap;
|
||||
|
@ -119,19 +90,32 @@ main {
|
|||
padding: 1rem;
|
||||
|
||||
.upcoming {
|
||||
font-family: "OCR A", "Noto Sans Mono", monospace;
|
||||
font-family: "Bad Script", cursive;
|
||||
font-size: 3em;
|
||||
line-height: 1.2;
|
||||
margin: 1em 0;
|
||||
text-align: center;
|
||||
|
||||
.uber {
|
||||
background: url(/uber.svg) no-repeat 50% 69% / 92.5% 92.5%;
|
||||
color: transparent;
|
||||
.dash {
|
||||
margin-right: 0.1em;
|
||||
vertical-align: 0.12em;
|
||||
}
|
||||
|
||||
.detail {
|
||||
display: block;
|
||||
font-size: 50%;
|
||||
margin-top: 0.4em;
|
||||
.dot {
|
||||
margin-left: -0.08em;
|
||||
vertical-align: 0.02em;
|
||||
}
|
||||
|
||||
.four {
|
||||
vertical-align: 0.25em;
|
||||
}
|
||||
|
||||
.nine, .seven {
|
||||
vertical-align: 0.42em;
|
||||
}
|
||||
|
||||
.two, .zero {
|
||||
vertical-align: 0.1em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -152,20 +136,23 @@ footer {
|
|||
margin-bottom: 0;
|
||||
|
||||
&::before {
|
||||
background: url(/footer.svg) bottom / auto $footer-height no-repeat;
|
||||
background: url(/igeldust.png) calc(50% - 200px) calc(50% - 50px) no-repeat, url(/wiese.png) center bottom -350px no-repeat;
|
||||
content: '';
|
||||
display: block;
|
||||
height: $footer-height;
|
||||
left: 0;
|
||||
margin-top: calc(1.5rem + 1.5em + 1rem);
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
& > nav {
|
||||
margin-bottom: unquote("calc(#{$footer-spacing} + 1rem)");
|
||||
margin-top: 1.5rem;
|
||||
margin-bottom: 1.5rem;
|
||||
margin-top: unquote("calc(#{$footer-height} - 1.5em - 1.5rem)");
|
||||
|
||||
a {
|
||||
color: $color-link-footer;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -198,6 +185,10 @@ nav {
|
|||
margin: 0.5em 0 0 0;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@media screen and (min-width: $small) {
|
||||
flex-direction: row;
|
||||
|
||||
|
@ -214,7 +205,7 @@ nav {
|
|||
|
||||
a {
|
||||
color: $color-link;
|
||||
text-decoration: none;
|
||||
text-decoration: underline dashed;
|
||||
|
||||
&:hover, &.is-active {
|
||||
text-decoration: underline;
|
||||
|
|
44
config.toml
|
@ -14,35 +14,31 @@ title = 'Intergalaktische Erfahrungsreise'
|
|||
weight = 20
|
||||
[menu.footer.params]
|
||||
rel = "me"
|
||||
[[menu.footer]]
|
||||
name = "Twitter"
|
||||
url = "https://twitter.com/erfahrungsreise"
|
||||
weight = 30
|
||||
|
||||
[[menu.main]]
|
||||
name = "Tickets"
|
||||
url = "https://tickets.fairydust.reisen/iger-2023/"
|
||||
weight = 20
|
||||
# [[menu.main]]
|
||||
# name = "Tickets"
|
||||
# url = "https://tickets.fairydust.reisen/iger-2023/"
|
||||
# weight = 20
|
||||
# [[menu.main]]
|
||||
# name = "CfP"
|
||||
# url = "https://cfp.fairydust.reisen/iger-2023/"
|
||||
# weight = 30
|
||||
[[menu.main]]
|
||||
name = "Programm"
|
||||
url = "https://cfp.fairydust.reisen/iger-2023/schedule/"
|
||||
weight = 30
|
||||
[[menu.main]]
|
||||
name = "Engelsystem"
|
||||
url = "https://helfen.fairydust.reisen/"
|
||||
weight = 40
|
||||
[[menu.main]]
|
||||
name = "Wiki"
|
||||
url = "https://wiki.fairydust.reisen/"
|
||||
weight = 45
|
||||
[[menu.main]]
|
||||
name = "Lageplan"
|
||||
url = "/lageplan.pdf"
|
||||
weight = 47
|
||||
# [[menu.main]]
|
||||
# name = "Programm"
|
||||
# url = "https://cfp.fairydust.reisen/iger-2023/schedule/"
|
||||
# weight = 30
|
||||
# [[menu.main]]
|
||||
# name = "Engelsystem"
|
||||
# url = "https://helfen.fairydust.reisen/"
|
||||
# weight = 40
|
||||
# [[menu.main]]
|
||||
# name = "Wiki"
|
||||
# url = "https://wiki.fairydust.reisen/"
|
||||
# weight = 45
|
||||
# [[menu.main]]
|
||||
# name = "Lageplan"
|
||||
# url = "/lageplan.pdf"
|
||||
# weight = 47
|
||||
# [[menu.main]]
|
||||
# name = "Feedback"
|
||||
# url = "https://wiki.fairydust.reisen/feedback"
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
slug: igerla
|
||||
title: s/IGER/IGERla/
|
||||
date: 2023-12-23
|
||||
menu:
|
||||
main:
|
||||
parent: Aktuelles
|
||||
---
|
||||
|
||||
Werte Datenreisende,
|
||||
|
||||
das **IGERla 2024** findet **vom 07. bis 09. Juni** statt -- das ist eine Woche nach der GPN/dem EMF Camp und eine Woche vor dem [VVoid Camp](https://vvoid.camp). Mehr Informationen zum Vorverkauf folgen voraussichtlich im Januar.
|
||||
|
||||
Eure IGER-Orga
|
|
@ -1,11 +1,7 @@
|
|||
---
|
||||
slug: "rückschau-2022"
|
||||
title: "Rückschau 2022"
|
||||
linkTitle: "2022"
|
||||
date: 2023-03-03
|
||||
menu:
|
||||
main:
|
||||
weight: 80
|
||||
---
|
||||
|
||||
*Liebe Erfahrungsreisenden,*
|
||||
|
|
Before Width: | Height: | Size: 12 MiB After Width: | Height: | Size: 12 MiB |
Before Width: | Height: | Size: 12 MiB After Width: | Height: | Size: 12 MiB |
Before Width: | Height: | Size: 13 MiB After Width: | Height: | Size: 13 MiB |
Before Width: | Height: | Size: 13 MiB After Width: | Height: | Size: 13 MiB |
Before Width: | Height: | Size: 14 MiB After Width: | Height: | Size: 14 MiB |
Before Width: | Height: | Size: 9.8 MiB After Width: | Height: | Size: 9.8 MiB |
|
@ -2,6 +2,6 @@
|
|||
title: Archiv
|
||||
menu:
|
||||
footer:
|
||||
weight: 40
|
||||
weight: 30
|
||||
---
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
slug: "contact"
|
||||
slug: kontakt
|
||||
aliases:
|
||||
- contact
|
||||
title: "Kontakt"
|
||||
menu:
|
||||
main:
|
||||
|
@ -9,14 +11,15 @@ menu:
|
|||
---
|
||||
|
||||
## Ankündigungen
|
||||
- **Mastodon:** [@erfahrungsreise@chaos.social](https://chaos.social/@erfahrungsreise)
|
||||
- **Twitter:** [@erfahrungsreise](https://twitter.com/erfahrungsreise)
|
||||
|
||||
* **Mastodon:** [@erfahrungsreise@chaos.social](https://chaos.social/@erfahrungsreise)
|
||||
* **Matrix:** [#iger:icbm.codes](https://matrix.to/#/#iger:icbm.codes)
|
||||
|
||||
## Fragen an die Orga
|
||||
- **E-Mail:** info@fairydust.reisen
|
||||
- **Telefon** während des Events:
|
||||
- Infodesk: +49 951 29909373
|
||||
- Diensthabende Orga-Ansprechperson: +49 951 29909377
|
||||
|
||||
* **E-Mail:** info@fairydust.reisen
|
||||
* **Telefon** während des Events (Nummer(n) werden noch bekannt gegeben)
|
||||
|
||||
## Kontakt zu Intergalaktischen Mitreisenden
|
||||
- **Matrix:** [#iger:icbm.codes](https://matrix.to/#/#iger:icbm.codes)
|
||||
|
||||
* **Matrix:** [#iger:icbm.codes](https://matrix.to/#/#iger:icbm.codes)
|
||||
|
|
|
@ -15,10 +15,13 @@ _Diese FAQ werden voraussichtlich noch erweitert; schaut also gerne ab und zu ma
|
|||
|
||||
## Allgemeine Informationen
|
||||
|
||||
### Was ist eigentlich eine _Intergalaktische Erfahrungsreise_?
|
||||
### Was ist eigentlich das _IGERla_? {#was-zum-igerla}
|
||||
|
||||
Die Intergalaktische Erfahrungsreise (IGER) ist eine Veranstaltung des [backspace e. V.](https://www.hackerspace-bamberg.de/), dem Hackspace und [CCC-Erfa](https://ccc.de/de/club/erfas) in Bamberg.
|
||||
Sie findet 2023 zum zweiten Mal statt; wieder in den [stillgelegten Werksgebäuden in der Ohmstraße 8 in Bamberg](#location).
|
||||
Das IGERla ist eine verkleinerte Variante der Intergalaktischen Erfahrungsreise (IGER, siehe [nächster Abschnitt]({{< relref "#was-zur-iger" >}})). Sie findet 2024 anstatt einer "großen" IGER statt, um das Orga-Team zu schonen. [Die Location]({{< relref "#location" >}}) und [das Grundkonzept]({{< relref "#was-zur-iger" >}}) bleiben gleich; ein paar der in der folgenden Sektion genannten "Standards" werden wir in diesem Jahr möglicherweise nicht erfüllen können.
|
||||
|
||||
### Was ist eigentlich eine _Intergalaktische Erfahrungsreise_? {#was-zur-iger}
|
||||
|
||||
Die Intergalaktische Erfahrungsreise (IGER) ist eine Veranstaltung des [backspace e. V.](https://www.hackerspace-bamberg.de/), dem Hackspace und [CCC-Erfa](https://ccc.de/de/club/erfas) in Bamberg.
|
||||
|
||||
Auf der IGER treffen sich Menschen, die sich über Technik, digitale Kunst und freies Wissen austauschen und zusammen „hacken“, also gemeinsam die Möglichkeiten und Grenzen von Systemen erforschen und kreativ umdefinieren.
|
||||
Dazu müsst ihr aber keineswegs Expert\*innen oder Vollzeit-ITler\*innen sein -- alle Menschen, die sich für technische und technikverwandte Themen interessieren und sich in den [Prinzipien des Chaos Computer Clubs](https://help.ccc.de/principles.html) wiederfinden, sind hier willkommen!
|
||||
|
@ -39,7 +42,7 @@ Schaut da mal vorbei, da landen bestimmt noch spannende Sachen von Erfahrungsrei
|
|||
|
||||
### Ich will selber etwas Spannendes machen! Wo kündige ich das an?
|
||||
|
||||
Wenn es ein Vortrag, Workshop oder Musikbeitrag werden soll, würden wir uns über deine Einreichung beim [Call for Participation (CfP)](https://cfp.fairydust.reisen/iger-2023/) freuen (geht noch bis zum 30. Juni 2023 um 23:59:59 Uhr MESZ).
|
||||
Wenn es ein Vortrag, Workshop oder Musikbeitrag werden soll, würden wir uns über deine Einreichung beim Call for Participation (CfP) freuen (Link und Deadline TBA).
|
||||
|
||||
Für Self-organized Sessions, Bastelprojekte, und alles was euch sonst noch spontan einfällt, haben wir euch ein [„Wiki“](https://wiki.fairydust.reisen) eingerichtet — hier in Form eines Markdown-Pads, für einfachsten Einstieg :)
|
||||
Schaut da mal vorbei, da landen bestimmt noch spannende Sachen von Erfahrungsreisenden wie euch selbst!
|
||||
|
@ -49,13 +52,16 @@ Schaut da mal vorbei, da landen bestimmt noch spannende Sachen von Erfahrungsrei
|
|||
Jederzeit [per Mail an die Orga](mailto:info@fairydust.reisen) sowie vor Ort an den Infodesk.
|
||||
Während der IGER wird der Infodesk voraussichtlich auch telefonisch erreichbar sein.
|
||||
|
||||
[Siehe auch: Kontakt]({{< relref "pages/contact.md" >}})
|
||||
|
||||
### Was sollte mitgebracht werden?
|
||||
|
||||
- Geschirr (Teller, [Tasse](https://tickets.fairydust.reisen/iger-2023/#item-24)) und Besteck (es gibt _wahrscheinlich_ wieder ewiges Frühstück)
|
||||
- mindestens eine Mehrfachsteckdose für Stromversorgung an den Hackcenter-Tischen
|
||||
- Netzwerkkabel zum Anschluss am Switch auf den Hackcenter-Tischen
|
||||
- [DECT](https://wiki.fairydust.reisen/dect)-Telefon
|
||||
- optional: Lanyard, falls ihr eines habt (für Badge und/oder Namensschild)
|
||||
- optional: Textilien zum Bedrucken (wir planen, vor Ort Möglichkeiten anzubieten, selbst Merch herzustellen)
|
||||
- optional: Geschirr (Teller, Tasse) und Besteck (es ist noch unklar, ob es wieder ewiges Frühstück geben wird)
|
||||
- optional: Netzwerkkabel zum Anschluss am Switch ~~auf den Hackcenter-Tischen~~ (Ethernet wird dieses Jahr nur begrenzt verfügbar sein)
|
||||
|
||||
Zudem bietet die Checkliste unter folgender Adresse eine hervorragende Übersicht: https://github.com/MacLemon/CongressChecklist/blob/master/README.md
|
||||
|
||||
|
@ -69,18 +75,18 @@ Das heißt nicht, dass überhaupt keine Aufnahmen erstellt werden dürfen. Fotos
|
|||
|
||||
Die IGER findet in Bamberg auf dem ehemaligen Industriegelände von Metalluk statt.
|
||||
|
||||
Adresse:\
|
||||
Ohmstraße 8\
|
||||
Adresse:
|
||||
Ohmstraße 8
|
||||
96050 Bamberg
|
||||
|
||||
Koordinaten:\
|
||||
Koordinaten:
|
||||
49.89601°N 10.91980°E ([auf OpenStreetMap zeigen](https://www.openstreetmap.org/?mlat=49.89600&mlon=10.91979#map=19/49.89600/10.91979))
|
||||
|
||||
### Anfahrt
|
||||
|
||||
#### Mit dem Zug
|
||||
|
||||
Zielbahnhof: Bamberg.
|
||||
Zielbahnhof: Bamberg
|
||||
Erreichbar im Regional- und Fernverkehr (einige IC- und ICE-Linien).
|
||||
|
||||
Für CCC-Veranstaltungen gibt es die Möglichkeit, ein DB-Veranstaltungsticket zu erwerben. Mehr Informationen gibt es unter: https://bahn.events.ccc.de/
|
||||
|
@ -123,7 +129,7 @@ Tipp: Denkt bei eurer Suche neben Hotels auch an Hostels, Airbnb, Couchsurfing u
|
|||
|
||||
Falls ihr noch auf der Suche seid oder Plätze anzubieten habt, tragt euch gerne in das [Unterkunfts-Austausch-Pad](https://wiki.fairydust.reisen/unterkunft) ein.
|
||||
|
||||
Wir würden auch gerne selbst niederschwellige Angebote schaffen, können hier aber aktuell nichts versprechen. Falls ihr über das Unterkunfts-Austausch-Pad nicht fündig werdet und das Schlafplatzproblem eure Teilnahme an der IGER gefährdet, würden wir gerne von euch hören. Bitte meldet euch in diesem Fall [per Mail bei der Orga](mailto:info@fairydust.reisen), damit wir einen Überblick über die Lage bekommen und die Optionen ausloten können.
|
||||
Wir würden auch gerne selbst niederschwellige Angebote schaffen, können hier aber nichts versprechen. Falls ihr über das Unterkunfts-Austausch-Pad nicht fündig werdet und das Schlafplatzproblem eure Teilnahme an der IGER gefährdet, würden wir gerne von euch hören. Bitte meldet euch in diesem Fall [per Mail bei der Orga](mailto:info@fairydust.reisen), damit wir einen Überblick über die Lage bekommen und die Optionen ausloten können.
|
||||
|
||||
## Welche Regelungen gelten für Teilnehmende unter 18 Jahren?
|
||||
|
||||
|
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
slug: "hygienekonzept"
|
||||
title: "Hygienekonzept"
|
||||
draft: yes
|
||||
---
|
||||
|
||||
_Diese Informationsseite wird noch für die IGER 2023 aktualisiert werden._
|
||||
|
||||
Innerhalb der Gebäude und geschlossener Räume gilt eine Pflicht zum Tragen einer FFP2-Maske. Wie ihr die Maske richtig tragt, könnt ihr hier nachlesen: https://www.bfarm.de/SharedDocs/Risikoinformationen/Medizinprodukte/DE/schutzmasken.html
|
||||
|
||||
Für Redner\*innen auf der Hauptbühne besteht während des Vortrags bei ausreichend Abstand (min. 1,5 m) die Option, auf das Tragen einer Maske zu verzichten.
|
||||
|
||||
Es werden keine ärztlichen Atteste mit Befreiungen von der Maskenpflicht akzeptiert.
|
||||
|
||||
Bitte testet euch während der Veranstaltung täglich auf SARS-CoV-2. Nutzt dazu auch die Testmöglichkeiten im Stadt- und Landkreis Bamberg, diese findet ihr hier: https://www.stadt.bamberg.de/Leben/Gesundheit/Coronainfos/Corona-Test/
|
||||
|
||||
Solltet ihr Symptome einer Erkrankung mit SARS-CoV-2 oder einer anderen ansteckenden Infektionskrankheit zeigen, bleibt zuhause.
|
||||
|
||||
Nutzt nach Möglichkeit die an den Eingängen ausgehängten QR-Codes der Corona-Warn-App, um im Falle eine Infektion anonym und datensparsam informiert zu werden bzw. andere zu informieren.
|
||||
|
||||
Versucht nach Möglichkeit ausreichend Abstand (min. 1,5 m) zu anderen zu halten – besonders im Außenbereich wo keine Pflicht zum Tragen von Masken besteht.
|
||||
|
||||
Links:
|
||||
- Möglichkeiten für Schnelltests: https://www.stadt.bamberg.de/Leben/Gesundheit/Coronainfos/Corona-Test/
|
||||
- Informationen der Stadt Bamberg: https://www.stadt.bamberg.de/Leben/Gesundheit/Coronainfos/
|
||||
- Informationen des Landes Bayern: https://www.stmgp.bayern.de/coronavirus/
|
||||
- Bayerische Infektionsschutzmaßnahmenverordnung: https://www.gesetze-bayern.de/Content/Document/BayIfSMV_16
|
|
@ -7,4 +7,4 @@ slug: "schedule"
|
|||
# weight: 15
|
||||
---
|
||||
|
||||
Das Programm zur IGER 2023 findet ihr [hier](https://cfp.fairydust.reisen/iger-2023/schedule/).
|
||||
Sobald wir einen ersten Fahrplan für das IGERla haben, werden wir ihn hier veröffentlichen!
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta property="og:title" content="{{ .Site.Title }} – {{ .Title }}">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="{{ .Permalink }}">
|
||||
<meta property="og:image" content="{{ .Site.BaseURL }}sm-header-2023.png">
|
||||
<meta property="og:image" content="{{ .Site.BaseURL }}sm-header.png">
|
||||
<meta property="og:locale" content="{{ .Site.LanguageCode }}">
|
||||
<title>{{ block "title" . }}{{ .Title }} – {{ .Site.Title }}{{ end }}</title>
|
||||
<link rel="icon" href="/icon.svg" sizes="any" type="image/svg+xml">
|
||||
|
@ -42,9 +42,10 @@
|
|||
</header>
|
||||
<main>
|
||||
<p class="upcoming">
|
||||
23.000 Meilen <span class="uber">uber</span> dem Meer<br>
|
||||
20.-​23.​7.​2023<br>
|
||||
<span class="detail"><a href="{{ relref . "/faq#was-ist-eigentlich-eine-_intergalaktische-erfahrungsreise_" }}">Ein Event des backspace e. V. in Bamberg</a></span>
|
||||
IGERla<br>
|
||||
<span class="seven">7</span><span class="dot">.</span><span class="dash">-</span><span class="nine">9</span><span class="dot">.</span>
|
||||
Juni
|
||||
<span class="two">2</span><span class="zero">0</span><span class="two">2</span><span class="four">4</span>
|
||||
</p>
|
||||
{{ block "main" . }}
|
||||
{{ end }}
|
||||
|
|
BIN
static/OCRA.otf
BIN
static/OCRA.ttf
Before Width: | Height: | Size: 140 KiB |
|
@ -1,225 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="1999.9999"
|
||||
height="1000"
|
||||
viewBox="0 0 529.16662 264.58334"
|
||||
version="1.1"
|
||||
id="svg537"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs534">
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2540">
|
||||
<path
|
||||
clip-rule="nonzero"
|
||||
d="M 3.4439182e-7,418.00001 1196.2188,418.00005 605.68931,1233.134 l 297.05616,218.0894 -943.760133,-6.3673 z"
|
||||
id="path2542"
|
||||
style="stroke-width:0.999997" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath3109">
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 56.973065,0 V 264.58333 H 132.29167 V 66.472697 H 343.5563 V 0 Z"
|
||||
id="path3111" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g
|
||||
id="layer1">
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#ffffff"
|
||||
fill-opacity="1"
|
||||
d="m 188.10528,60.336566 c 0,5.56452 -4.5117,10.07622 -10.07622,10.07622 -5.56452,0 -10.07621,-4.5117 -10.07621,-10.07622 0,-5.564515 4.51169,-10.076211 10.07621,-10.076211 5.56452,0 10.07622,4.511696 10.07622,10.076211"
|
||||
id="path159"
|
||||
style="stroke-width:0.352778" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#ffffff"
|
||||
fill-opacity="1"
|
||||
d="m 241.64732,65.677456 c 0,1.97335 -1.59988,3.57326 -3.57187,3.57326 -1.97334,0 -3.57326,-1.59991 -3.57326,-3.57326 0,-1.97197 1.59992,-3.57187 3.57326,-3.57187 1.97199,0 3.57187,1.5999 3.57187,3.57187"
|
||||
id="path165"
|
||||
style="stroke-width:0.352778" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#ffffff"
|
||||
fill-opacity="1"
|
||||
d="m 461.83517,62.075783 c 0,2.91593 -2.36474,5.28202 -5.28204,5.28202 -2.91729,0 -5.282,-2.36609 -5.282,-5.28202 0,-2.91731 2.36471,-5.2834 5.282,-5.2834 2.9173,0 5.28204,2.36609 5.28204,5.2834"
|
||||
id="path169"
|
||||
style="stroke-width:0.352778" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#ffffff"
|
||||
fill-opacity="1"
|
||||
d="m 270.28659,1.7473557 c 0,1.83417 -1.4869,3.31969 -3.32107,3.31969 -1.83279,0 -3.31969,-1.48552 -3.31969,-3.31969 0,-1.83417003 1.4869,-3.3197 3.31969,-3.3197 1.83417,0 3.32107,1.48552997 3.32107,3.3197"
|
||||
id="path181"
|
||||
style="stroke-width:0.352778" />
|
||||
<g
|
||||
clip-path="url(#clipPath2540)"
|
||||
id="g155"
|
||||
transform="matrix(0.18789442,0.25592815,-0.25592815,0.18789442,334.07974,-227.96195)">
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#fff200"
|
||||
fill-opacity="1"
|
||||
d="m 744.99609,418.33203 c 0,0 -81.79687,184.11719 -537.05468,317.47266 -289.199222,84.71093 -322.82422,282.84761 -269.605472,434.25391 45.683593,129.9609 173.097652,251.7578 407.289062,270.6094 434.01562,34.9375 876.8867,-261.0274 876.8867,-261.0274 0,0 -528.15233,188.4063 -772.32811,30.5313 -142.875,-92.375 -131.76953,-281.03518 37.97266,-401.91018 C 762.49219,612.91016 744.99609,418.33203 744.99609,418.33203"
|
||||
id="path153" />
|
||||
</g>
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#ffffff"
|
||||
fill-opacity="1"
|
||||
d="m 511.52209,72.726195 c -1.10868,1.38742 -3.13166,1.61245 -4.51908,0.50377 -1.38744,-1.1087 -1.61322,-3.13069 -0.50453,-4.51812 1.10868,-1.38743 3.13144,-1.6142 4.51888,-0.50549 1.38741,1.10866 1.61342,3.13241 0.50473,4.51984"
|
||||
id="path163"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#ffffff"
|
||||
fill-opacity="1"
|
||||
d="m 348.72144,17.281771 c -1.63903,2.0511 -4.63116,2.38435 -6.6813,0.7461 -2.05111,-1.63904 -2.38609,-4.63097 -0.74707,-6.68207 1.63903,-2.0511097 4.63116,-2.3843597 6.68227,-0.74533 2.05013,1.63826 2.38513,4.63019 0.7461,6.6813"
|
||||
id="path171"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#ffffff"
|
||||
fill-opacity="1"
|
||||
d="m 504.18991,55.798665 c -1.10869,1.38743 -3.13164,1.61246 -4.51908,0.50376 -1.38742,-1.10867 -1.61419,-3.13144 -0.5055,-4.51887 1.10869,-1.38743 3.13243,-1.61342 4.51985,-0.50474 1.38744,1.10869 1.61341,3.13242 0.50473,4.51985"
|
||||
id="path179"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#ffffff"
|
||||
fill-opacity="1"
|
||||
d="m 307.23344,27.986641 c -1.02972,1.28861 -2.91052,1.49863 -4.2001,0.46813 -1.2886,-1.02971 -1.49862,-2.91051 -0.46891,-4.19911 1.0305,-1.28958 2.91053,-1.49864 4.19913,-0.46892 1.28957,1.03049 1.50038,2.91033 0.46988,4.1999"
|
||||
id="path187"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#00a870"
|
||||
fill-opacity="1"
|
||||
d="m 405.85487,54.482355 c 0,0 -7.18956,10.24178 -20.79994,15.56453 -17.91297,7.00455 -44.50544,9.58668 -45.79074,9.20867 -1.29469,-0.38029 -1.7535,-3.13448 -2.01238,-4.57685 -0.25915,-1.44063 -0.40014,-3.98192 0.56186,-5.05436 0.41598,-0.46234 20.37873,-2.44515 29.21686,-8.3353 8.77266,-5.8452 9.84736,-9.91598 9.84736,-9.91598 z m 0,0"
|
||||
id="path195"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#00a870"
|
||||
fill-opacity="1"
|
||||
d="m 332.071,23.210666 c -1.38024,0.247116 -2.11666,-2.333998 -2.51873,-4.572836 -0.42012,-2.340989 0.44685,-3.45905 0.90979,-3.805071 0.46373,-0.344936 24.09376,-7.3896908 41.63891,-6.6005928 15.00847,0.6744 19.91502,3.5664838 19.91502,3.5664838 l -19.97163,12.111597 c 0,0 -9.99414,-3.358765 -18.75099,-3.022517 -9.30131,0.357495 -21.22237,2.322936 -21.22237,2.322936"
|
||||
id="path197"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#fff200"
|
||||
fill-opacity="1"
|
||||
d="m 379.49129,51.653005 -2.61413,-0.28094 c 0,0 -1.07394,4.07179 -9.84764,9.91771 -8.83811,5.89016 -28.79987,7.87223 -29.21585,8.33457 -0.962,1.07244 -0.82101,3.61373 -0.56112,5.05537 0.25814,1.44136 0.71696,4.19551 2.01164,4.57584 0.18928,0.0562 0.93048,0.0477 2.11451,-0.0308 0,0 -1.64471,-1.81272 -2.04939,-4.57275 -0.40369,-2.76078 -0.13775,-3.54068 0.81996,-3.80377 0.9577,-0.26308 17.52534,-2.5658 25.45494,-6.62119 7.14986,-3.65678 11.01274,-8.18826 12.74217,-10.69038 0,0 8.98123,1.05911 14.75217,1.40875 6.58752,0.39942 12.15406,0.31138 12.15406,0.31138 l 0.60226,-0.77449 z m 0,0"
|
||||
id="path199"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#fff200"
|
||||
fill-opacity="1"
|
||||
d="m 332.54573,14.152269 c -1.26368,0.372329 -2.0047,0.622498 -2.08367,0.68049 -0.46269,0.34638 -1.32991,1.464082 -0.90979,3.805071 0.40207,2.238838 1.13849,4.819952 2.51873,4.572836 0,0 11.92106,-1.965441 21.22237,-2.322936 8.75685,-0.336248 18.74998,3.02325 18.74998,3.02325 l 2.14681,-1.300714 c 0,0 -9.03574,-4.054708 -19.37311,-3.727391 -10.50412,0.332803 -21.32113,2.666214 -21.79591,2.568603 -0.47404,-0.09661 -1.04342,-1.180234 -1.28963,-2.601134 -0.55071,-3.179016 0.81422,-4.698075 0.81422,-4.698075"
|
||||
id="path201"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#bdd3dc"
|
||||
fill-opacity="1"
|
||||
d="m 480.91473,16.340049 c 0.54347,0.367212 1.00113,0.611265 1.37835,0.691267 1.3477,0.28915 7.58892,0.03655 10.13915,-0.08179 0.12158,-0.0062 0.14639,0.16793 0.0292,0.197008 -2.4615,0.587079 -8.42907,2.075762 -9.60039,2.951108 -0.26233,0.195933 -1.00885,0.736188 -1.26438,1.048263 0.0122,-1.699806 -0.27547,-3.244158 -0.68197,-4.80586"
|
||||
id="path203"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#00a870"
|
||||
fill-opacity="1"
|
||||
d="m 456.53706,1.7304292 c 13.74202,4.647485 20.88899,12.2551718 24.37767,14.6096198 0.4065,1.561703 0.69411,3.106052 0.68197,4.80586 -1.76643,2.164618 -3.68688,7.047095 -10.02474,13.486427 -6.55215,6.656669 -18.60448,17.274479 -44.86211,19.472319 -26.05629,2.1808 -49.83196,-2.73159 -49.83196,-2.73159 0,0 -2.73138,0.4898 -5.21023,-13.308344 -2.85149,-15.88167 -1.11461,-17.09528 -1.11461,-17.09528 0,0 7.84033,-5.006836 25.78253,-12.2482468 23.94282,-9.66366706 45.73099,-11.886549 60.20148,-6.990765"
|
||||
id="path205"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#fff200"
|
||||
fill-opacity="1"
|
||||
d="m 373.29644,19.376898 c -1.85727,1.026588 -2.74413,1.591537 -2.74413,1.591537 0,0 -1.73613,1.21465 1.11535,17.096286 2.47885,13.798144 5.21023,13.308344 5.21023,13.308344 0,0 1.02505,0.21211 2.88423,0.52729 0,0 -2.0419,-0.10717 -3.62744,-4.58044 -1.58556,-4.47327 -3.66106,-13.679482 -4.16649,-20.151969 -0.50645,-6.471756 1.32825,-7.791048 1.32825,-7.791048"
|
||||
id="path207"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#fff200"
|
||||
fill-opacity="1"
|
||||
d="m 480.64101,18.004193 c 0,0 -5.06444,-2.539221 -8.72381,-3.045163 -3.65765,-0.505673 -7.61511,-0.386569 -7.61511,-0.386569 l 1.01143,3.877776 c 0,0 2.66969,-0.521447 6.9226,-0.738974 4.0365,-0.206359 8.40489,0.29293 8.40489,0.29293"
|
||||
id="path209"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#fff200"
|
||||
fill-opacity="1"
|
||||
d="m 435.34944,21.132157 c 0,0 -7.6948,0.590445 -13.67057,1.426653 -10.23603,1.43145 -19.3014,3.340466 -19.3014,3.340466 0,0 8.85256,-3.709835 18.97693,-6.450196 6.49869,-1.758604 13.24869,-2.477012 13.24869,-2.477012 z m 0,0"
|
||||
id="path211"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#fff200"
|
||||
fill-opacity="1"
|
||||
d="m 374.72077,36.627889 c 0,0 10.46339,2.514215 16.37034,1.49622 7.83226,-1.348338 13.4751,-5.314207 13.31465,-11.513773 -0.15378,-5.953688 -5.78341,-8.214904 -9.21556,-8.356858 -8.77676,-0.361473 -18.21364,1.760295 -18.21364,1.760295 z m 0,0"
|
||||
id="path213"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#00a870"
|
||||
fill-opacity="1"
|
||||
d="m 318.85137,39.678114 c -1.04792,0.01237 -2.08284,-2.340346 -2.44084,-4.814639 -0.35624,-2.47404 0.15239,-3.529035 0.61804,-3.875526 0.46627,-0.345671 24.67498,-6.880947 43.78485,-9.174593 16.65854,-1.99867 23.54936,-2.512744 27.87203,-2.543038 7.74737,-0.0536 12.98304,1.895252 13.5722,6.849254 0.74602,6.280461 -8.548,11.197554 -15.99269,11.175131 -5.34644,-0.01664 -10.85929,-1.106571 -26.93168,-0.807539 -14.78947,0.27566 -40.48191,3.19095 -40.48191,3.19095"
|
||||
id="path215"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#fff200"
|
||||
fill-opacity="1"
|
||||
d="m 319.83798,30.145453 c -1.70767,0.467515 -2.71742,0.774971 -2.80941,0.842496 -0.46572,0.3464 -0.97328,1.400753 -0.6163,3.875798 0.35626,2.474021 1.39118,4.826738 2.4391,4.814367 0,0 1.04378,-0.118578 2.82977,-0.309703 0,0 -2.38541,-0.841207 -3.04315,-4.786316 -0.63181,-3.790301 1.20014,-4.436603 1.20014,-4.436603"
|
||||
id="path217"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#151821"
|
||||
fill-opacity="1"
|
||||
d="m 438.88394,32.581315 c -1.15967,-1.579556 -2.09459,-3.328731 -2.78195,-5.199634 -4.13447,-11.262558 -2.11797,-17.7556781 0.30344,-21.2181278 1.69543,-2.424807 4.20996,-3.953953 7.27253,-4.422281 4.36588,-0.6651061 9.70447,0.849711 13.60069,3.861937 1.70707,1.319241 3.09451,2.720777 4.24244,4.2843457 2.62245,3.5719971 3.91619,8.0040721 3.84434,13.1725961 -0.069,5.027892 -1.81049,9.223598 -5.03588,12.131635 -2.43903,2.199907 -5.75429,3.656878 -9.09437,3.996591 -4.30307,0.440537 -9.03667,-2.092333 -12.35124,-6.607062 z m 0,0"
|
||||
id="path219"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#bdd3dc"
|
||||
fill-opacity="1"
|
||||
d="m 462.1459,9.4288229 c -1.19122,-1.6225397 -2.62778,-3.0741977 -4.39265,-4.4386647 -4.05745,-3.135438 -9.6271,-4.71139402 -14.19126,-4.01456997 -3.27772,0.50010097 -5.97173,2.14102397 -7.792,4.74365397 -2.52541,3.6141917 -4.64613,10.3530778 -0.39556,21.9288708 0.71221,1.940365 1.68271,3.752646 2.88568,5.391195 3.47678,4.735666 8.47781,7.387597 13.05377,6.920595 3.50075,-0.357681 6.97599,-1.885939 9.53517,-4.192531 3.38841,-3.056939 5.21825,-7.446719 5.29194,-12.696579 0.0734,-5.340393 -1.27062,-9.93101 -3.99509,-13.6419701 m -1.24865,0.9167341 c 2.18207,2.97215 3.77272,7.01857 3.69435,12.704211 -0.15118,10.894832 -8.11772,14.826552 -13.43538,15.368834 -4.13072,0.421698 -8.56776,-2.101187 -11.64746,-6.296007 -1.08628,-1.479588 -2.00397,-3.167558 -2.67996,-5.008336 -3.49806,-9.528088 -2.74351,-16.279444 0.21135,-20.5074018 4.64121,-6.63996402 14.47074,-4.481992 19.76492,-0.391309 1.42376,1.101023 2.85326,2.442483 4.09218,4.1300088"
|
||||
id="path221"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#2f404c"
|
||||
fill-opacity="1"
|
||||
d="m 461.34323,27.259356 c 0.93335,-3.079269 1.68286,-7.731359 -1.3736,-13.571057 -3.05646,-5.8396868 -8.08626,-8.3212428 -12.10646,-8.8869408 -5.20294,-0.732786 -7.63115,2.473113 -7.63115,2.473113 0,0 6.52061,0.320823 12.6477,9.3496328 5.78031,8.518729 4.24562,16.412092 4.24562,16.412092 0,0 3.00957,-1.789509 4.21789,-5.77684"
|
||||
id="path223"
|
||||
style="stroke-width:0.317496" />
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#ffffff"
|
||||
fill-opacity="1"
|
||||
d="m 47.605232,-5.9851528 c 0,0 -15.8745,25.0354978 -17.758638,57.4625378 -2.357195,40.56567 4.604997,64.594815 4.604997,64.594815 0,0 -12.805438,-30.343055 -13.793967,-59.304055 C 19.121016,11.71606 47.605232,-5.9851528 47.605232,-5.9851528"
|
||||
id="path227"
|
||||
style="stroke-width:0.317496" />
|
||||
<g
|
||||
id="g2547"
|
||||
clip-path="url(#clipPath3109)">
|
||||
<path
|
||||
fill-rule="nonzero"
|
||||
fill="#ffffff"
|
||||
fill-opacity="1"
|
||||
d="m 335.60599,50.937545 c 0,0 -35.71989,12.85424 -104.33718,-8.75426 C 174.66892,24.359052 159.09172,16.073928 124.23843,33.166133 89.385127,50.258335 77.175537,88.502795 89.028228,128.22133 109.08882,195.44704 194.05106,261.07805 194.05106,261.07805 c 0,0 -119.113393,-69.90964 -133.262133,-150.12549 C 49.128334,44.838795 86.444257,12.931529 126.58023,6.1112072 c 27.87757,-4.738022 64.40806,8.7268658 98.36024,23.4307688 76.9719,33.336059 110.66552,21.395569 110.66552,21.395569"
|
||||
id="path225"
|
||||
style="stroke-width:0.317496" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 14 KiB |
|
@ -1,324 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="1000"
|
||||
height="200"
|
||||
viewBox="0 0 1000 200.00001"
|
||||
version="1.1"
|
||||
id="svg20302"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs20299" />
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
id="g21025"
|
||||
transform="matrix(4.034339,0.60072089,-0.60072089,4.034339,174.64856,-393.74518)">
|
||||
<g
|
||||
id="satellit"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-13.704894,5.3117228)">
|
||||
<g
|
||||
id="g17910">
|
||||
<circle
|
||||
class="st4"
|
||||
cx="569.20001"
|
||||
cy="357.39999"
|
||||
r="4"
|
||||
id="circle17894"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="608.09998"
|
||||
cy="348.20001"
|
||||
r="4.4000001"
|
||||
id="circle17896"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="648.79999"
|
||||
cy="337.5"
|
||||
r="4.0999999"
|
||||
id="circle17898"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="685.79999"
|
||||
cy="329"
|
||||
r="3.7"
|
||||
id="circle17900"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="722.29999"
|
||||
cy="322"
|
||||
r="3.2"
|
||||
id="circle17902"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="758.09998"
|
||||
cy="315.70001"
|
||||
r="2.9000001"
|
||||
id="circle17904"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="793.40002"
|
||||
cy="310.79999"
|
||||
r="2.5999999"
|
||||
id="circle17906"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="826.59998"
|
||||
cy="307.20001"
|
||||
r="2"
|
||||
id="circle17908"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g17930">
|
||||
<circle
|
||||
class="st4"
|
||||
cx="50.700001"
|
||||
cy="518.40002"
|
||||
r="2.5"
|
||||
id="circle17912"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="86.400002"
|
||||
cy="502.39999"
|
||||
r="2.9000001"
|
||||
id="circle17914"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="123.3"
|
||||
cy="487.39999"
|
||||
r="3.2"
|
||||
id="circle17916"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="157.89999"
|
||||
cy="475.10001"
|
||||
r="3.5"
|
||||
id="circle17918"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="194.60001"
|
||||
cy="461"
|
||||
r="3.8"
|
||||
id="circle17920"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="234.3"
|
||||
cy="448"
|
||||
r="4.1999998"
|
||||
id="circle17922"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="273.70001"
|
||||
cy="435.20001"
|
||||
r="4.3000002"
|
||||
id="circle17924"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="314.39999"
|
||||
cy="423.5"
|
||||
r="4.4000001"
|
||||
id="circle17926"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
<circle
|
||||
class="st4"
|
||||
cx="17.6"
|
||||
cy="533.09998"
|
||||
r="1.9"
|
||||
id="circle17928"
|
||||
style="fill:#ffffff" />
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
<g
|
||||
id="Uboot"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-13.704894,5.3117228)">
|
||||
<g
|
||||
id="g17981">
|
||||
<g
|
||||
id="g17975">
|
||||
<path
|
||||
class="st5"
|
||||
d="m 543.2,365.1 c -4.1,0.7 -13.3,0.9 -15.7,0.3 -0.5,-0.1 -2,-0.5 -2.6,-0.8 -4.1,-2.1 -9.8,-7 -23.6,-12.7 -14.2,-5.9 -39.3,-14.3 -80.5,-0.7 -11.3,3.7 -21.9,8.1 -31.4,12.5 l -1.1,-0.8 c -3.5,-2.7 -19.5,-13.9 -39.9,-14.4 -26,-0.7 -58.6,9 -68.6,12.8 0,0 0,0 0,0 -0.2,0.1 -0.5,0.2 -0.7,0.3 0,0 -0.1,0 -0.1,0.1 -0.3,0.1 -0.5,0.2 -0.7,0.3 0,0 0,0 -0.1,0 -0.2,0.1 -0.4,0.2 -0.6,0.3 0,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0.2 -0.4,0.2 0,0 0,0 -0.1,0 -0.1,0.1 -0.2,0.1 -0.2,0.2 -1.6,1.6 -0.3,7.1 0.4,10 0.7,2.9 2.3,7.8 4.4,9.1 0.9,0.6 30.7,-9.4 47.4,-4.4 0.8,0.2 1.4,0.5 2.2,0.7 9.6,3.2 13.6,7.3 15.3,9.7 -1,1.3 -2.7,5.9 1.2,23.1 2.1,9.2 3.8,15.2 5.3,19.1 -2.2,1.1 -4.6,2.3 -7.2,3.5 -14.4,6.6 -38.2,13.1 -48.2,15.7 -2.2,0.6 -4.7,1.2 -4.7,1.2 -1.3,0.6 -1.1,5.2 0,9.6 1.1,4.4 2.4,5.9 3.2,6.2 0.2,0.1 1.9,0 4.7,-0.2 0,0 0,0 0,0 v 0 c 10,-0.7 34.2,-3.4 55.9,-9.5 22.1,-6.3 30.4,-10.2 35.7,-13.1 2.1,-1.2 3.9,-2.4 5.5,-3.7 2,0 4,0 6.1,-0.1 42.5,-0.7 77,-11.3 95.8,-28.1 17.9,-15.9 24.1,-30.7 27.9,-36.5 0.6,-0.9 1.1,-1.6 1.6,-1.9 1.9,-1.3 10.4,-4.8 14.4,-6.3 0.1,-0.1 -0.3,-1.7 -0.5,-1.7 z"
|
||||
id="path17933"
|
||||
style="fill:#ffed00" />
|
||||
|
||||
<path
|
||||
class="st6"
|
||||
d="m 434.5,347.4 c 0,0 4.1,14.9 16,19.1 7.4,2.6 18.8,2.5 29.4,-4.7 9.1,-6.2 11.2,-13.6 11.2,-13.6 0,0 -15.2,-5.1 -29.5,-4.9 -12.1,0.2 -27.1,4.1 -27.1,4.1 z"
|
||||
id="path17935"
|
||||
style="fill:#93b2c2" />
|
||||
|
||||
<g
|
||||
id="g17939">
|
||||
<path
|
||||
d="m 462.2,340.3 c 16.3,-0.4 25.6,6.9 25.6,6.9 0,0 -2.7,7.3 -12.7,13.3 -7.6,4.6 -18.8,5.6 -26.8,0.8 -6.8,-4.1 -10.7,-14.7 -10.7,-14.7 0,0 7.6,-5.9 24.6,-6.3 z"
|
||||
id="path17937" />
|
||||
|
||||
</g>
|
||||
|
||||
<path
|
||||
class="st7"
|
||||
d="m 442.8,346.9 c 0,0 9.4,-4.5 20.9,-4.2 11.6,0.3 20.6,5.6 20.6,5.6 0,0 -3,5.5 -9.9,5.5 -6.8,0 -9.9,-5.4 -19.4,-6.9 -7.5,-1.2 -12.2,0 -12.2,0 z"
|
||||
id="path17941"
|
||||
style="fill:#354b54" />
|
||||
|
||||
<g
|
||||
id="g17951">
|
||||
|
||||
<ellipse
|
||||
transform="matrix(0.9626,-0.2711,0.2711,0.9626,-92.9723,116.8277)"
|
||||
class="st6"
|
||||
cx="376.39999"
|
||||
cy="394.89999"
|
||||
rx="13"
|
||||
ry="10.3"
|
||||
id="ellipse17943"
|
||||
style="fill:#93b2c2" />
|
||||
|
||||
<g
|
||||
id="g17947">
|
||||
<ellipse
|
||||
transform="matrix(0.9626,-0.2711,0.2711,0.9626,-92.9768,116.8175)"
|
||||
cx="376.29999"
|
||||
cy="394.89999"
|
||||
rx="9.8000002"
|
||||
ry="7.8000002"
|
||||
id="ellipse17945" />
|
||||
|
||||
</g>
|
||||
|
||||
<path
|
||||
class="st7"
|
||||
d="m 369.4,393.3 c 0,0 2.6,-4.6 7.7,-4.6 6.5,0 7,4.4 7,4.4 0,0 -2.6,-1.9 -7.5,-1.8 -4,0 -7.2,2 -7.2,2 z"
|
||||
id="path17949"
|
||||
style="fill:#354b54" />
|
||||
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g17961">
|
||||
|
||||
<ellipse
|
||||
transform="matrix(0.9626,-0.2711,0.2711,0.9626,-89.7453,124.2159)"
|
||||
class="st6"
|
||||
cx="404.70001"
|
||||
cy="386.89999"
|
||||
rx="13"
|
||||
ry="10.3"
|
||||
id="ellipse17953"
|
||||
style="fill:#93b2c2" />
|
||||
|
||||
<g
|
||||
id="g17957">
|
||||
<ellipse
|
||||
transform="matrix(0.9626,-0.2711,0.2711,0.9626,-89.7498,124.2057)"
|
||||
cx="404.70001"
|
||||
cy="387"
|
||||
rx="9.8000002"
|
||||
ry="7.8000002"
|
||||
id="ellipse17955" />
|
||||
|
||||
</g>
|
||||
|
||||
<path
|
||||
class="st7"
|
||||
d="m 397.8,385.3 c 0,0 2.6,-4.6 7.7,-4.6 6.5,0 7,4.4 7,4.4 0,0 -2.6,-1.9 -7.5,-1.8 -4.1,0.1 -7.2,2 -7.2,2 z"
|
||||
id="path17959"
|
||||
style="fill:#354b54" />
|
||||
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g17971">
|
||||
|
||||
<ellipse
|
||||
transform="matrix(0.9626,-0.2711,0.2711,0.9626,-86.5183,131.604)"
|
||||
class="st6"
|
||||
cx="433.10001"
|
||||
cy="379"
|
||||
rx="13"
|
||||
ry="10.3"
|
||||
id="ellipse17963"
|
||||
style="fill:#93b2c2" />
|
||||
|
||||
<g
|
||||
id="g17967">
|
||||
<ellipse
|
||||
transform="matrix(0.9626,-0.2711,0.2711,0.9626,-86.5228,131.5938)"
|
||||
cx="433.10001"
|
||||
cy="379"
|
||||
rx="9.8000002"
|
||||
ry="7.8000002"
|
||||
id="ellipse17965" />
|
||||
|
||||
</g>
|
||||
|
||||
<path
|
||||
class="st7"
|
||||
d="m 426.1,377.3 c 0,0 2.6,-4.6 7.7,-4.6 6.5,0 7,4.4 7,4.4 0,0 -2.6,-1.9 -7.5,-1.8 -4,0.1 -7.2,2 -7.2,2 z"
|
||||
id="path17969"
|
||||
style="fill:#354b54" />
|
||||
|
||||
</g>
|
||||
|
||||
<path
|
||||
class="st5"
|
||||
d="m 421,358.6 c 0,0 -8.7,-38.4 -9.5,-42 -0.8,-3.6 -0.8,-8.3 4.2,-11.2 3.7,-2.1 11.7,-3.8 11.7,-3.8 l 2.9,13 c 0,0 -6,0.8 -7.6,3.4 -1,1.6 -0.2,4.7 -0.2,4.7 l 7.4,32.2 z"
|
||||
id="path17973"
|
||||
style="fill:#ffed00" />
|
||||
|
||||
</g>
|
||||
|
||||
<path
|
||||
class="st8"
|
||||
d="m 358,379.9 c -21.8,-19.5 -54.2,-13.5 -80.8,-6.9 0.7,2.9 2.3,7.5 4.3,8.9 0.9,0.6 30.7,-9.4 47.4,-4.4 0.8,0.2 1.4,0.5 2.2,0.7 9.5,3.2 13.6,7.2 15.3,9.6 l 0.1,0.1 c 0.9,-1.1 7.6,-6.1 11.5,-8 z"
|
||||
id="path17977"
|
||||
style="fill:#fbba00" />
|
||||
|
||||
<path
|
||||
class="st8"
|
||||
d="m 519.3,378.1 c -35.9,36.8 -100.4,44.5 -130.1,48.3 -21.2,22.2 -74.6,30.1 -96.5,33.3 0,0.1 0,0.2 0.1,0.3 1.1,4.4 2.4,5.9 3.2,6.2 0.2,0.1 1.9,0 4.7,-0.2 0,0 0,0 0,0 v 0 c 10,-0.7 34.2,-3.4 55.9,-9.5 22.1,-6.3 30.4,-10.2 35.7,-13.1 2.1,-1.2 3.9,-2.4 5.5,-3.7 2,0 4,0 6.1,-0.1 42.5,-0.7 77,-11.3 95.8,-28.1 17.9,-15.9 24.1,-30.7 27.9,-36.5 0.6,-0.9 1.1,-1.6 1.6,-1.9 0.9,-0.6 3.3,-1.7 5.9,-2.9 -6.4,1.7 -10.8,2.9 -15.8,7.9 z"
|
||||
id="path17979"
|
||||
style="fill:#fbba00" />
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 375 KiB |
Before Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 1.1 MiB |
155
static/stars.svg
Before Width: | Height: | Size: 18 KiB |
|
@ -1,42 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="55.380753mm"
|
||||
height="16.483541mm"
|
||||
viewBox="0 0 55.380753 16.483541"
|
||||
version="1.1"
|
||||
id="svg983"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs980" />
|
||||
<g
|
||||
id="layer1"
|
||||
transform="translate(-99.823041,-68.266279)">
|
||||
<g
|
||||
id="g978"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,84.745252,18.339405)">
|
||||
<path
|
||||
class="st4"
|
||||
d="m 94.5,245.3 c 0,1.8 0.3,5.7 -3.8,5.7 -3.3,0 -3.8,-2.7 -3.8,-5.4 v -1.3 l -6.2,4.1 c -2.5,1.6 -4.6,2.6 -6.6,2.6 h -5.7 c -2.2,0 -4.6,-0.6 -7.1,-2.8 -3.4,-3 -3.4,-6.2 -3.5,-10.4 L 57,213.7 c -0.1,-2.8 0.3,-5.8 3.8,-5.8 3.3,0 3.7,2.8 3.8,5.3 l 0.8,23.6 c 0.1,1.8 0.2,3.8 0.8,5 0.6,1.2 2.6,1.6 4.5,1.6 h 2.6 c 0.9,0 1.7,-0.2 2.4,-0.7 L 87,235.6 v -22.3 c 0,-2.6 0.6,-5.3 3.8,-5.3 3.2,0 3.8,2.6 3.8,5.3 v 32 z M 69.3,198.7 c 0,2.4 -1,4.9 -4,4.9 -3,0 -4,-2.5 -4,-4.9 v -5 c 0,-2.7 1.1,-5 4,-5 2.9,0 4,2.2 4,5 z m 20.4,0 c 0,2.4 -1,4.9 -4,4.9 -3,0 -4,-2.5 -4,-4.9 v -5 c 0,-2.7 1.1,-5 4,-5 2.9,0 4,2.2 4,5 z"
|
||||
id="path552"
|
||||
style="fill:#ffffff" />
|
||||
<path
|
||||
class="st4"
|
||||
d="m 122.4,213.5 1.4,-1.4 c 2.6,-2.6 4.1,-4.2 7.6,-4.2 h 8.5 c 2,0 3.8,1.1 5.7,2.7 l 2.6,2.2 c 3,2.6 4.2,4.8 4.2,8.9 v 15.4 c 0,4.1 -1.1,6.2 -4.2,8.9 l -2.6,2.2 c -1.8,1.5 -4.1,2.7 -6,2.7 h -7.9 c -3.1,0 -5.3,-1.9 -7.4,-3.9 l -1.8,-1.7 v 0.5 c 0,2.5 -0.8,5.1 -3.8,5.1 -3.3,0 -3.8,-2.7 -3.8,-5.4 v -48.2 c 0,-2.6 0.6,-5.3 3.8,-5.3 3.2,0 3.8,2.6 3.8,5.3 v 16.2 z m 0,19 c 0,2.5 0.3,3.4 2.3,5.1 l 4.4,3.8 c 1,0.8 2.2,1.9 3,1.9 h 5.8 c 1.1,0 1.8,-0.2 2.4,-0.7 l 3.4,-2.8 c 0.9,-0.7 1,-2.6 1,-4.1 v -13.6 c 0,-1.5 -0.4,-2.7 -1,-3.2 l -3.5,-2.7 c -0.5,-0.4 -1,-0.6 -1.8,-0.6 H 133 c -1,0 -2.3,0.6 -3.2,1.4 l -5,4.3 c -1.3,1 -2.3,2.2 -2.3,4.6 v 6.6 z"
|
||||
id="path554"
|
||||
style="fill:#ffffff" />
|
||||
<path
|
||||
class="st4"
|
||||
d="m 185.8,251 c -3.2,0 -4.5,0 -6.9,-2.1 l -3.3,-2.9 c -3,-2.7 -3.9,-4.5 -3.9,-8.6 v -14.8 c 0,-4.1 0.6,-6.5 3.8,-9.2 l 2.7,-2.3 c 3.6,-3.1 5.4,-3.2 8.5,-3.2 h 7 c 3.8,0 5.5,0.4 8.5,2.8 l 3.1,2.5 c 3.5,2.8 4,5.8 4,10 v 6.1 c 0,4.4 -0.7,5.7 -5.3,5.7 h -24.6 v 2.6 c 0,0.7 0.6,1.7 1.1,2.2 l 1.9,2.1 c 1,1.1 2.6,1.4 5.1,1.4 H 204 c 2.6,0 5.3,0.6 5.3,3.8 0,3.4 -3,3.8 -5.3,3.8 h -18.2 z m -6.4,-23.7 h 22.2 v -4.6 c 0,-1.4 0.1,-2.6 -1,-3.6 l -3,-2.6 c -1,-0.9 -2.5,-1 -3.7,-1 h -6.5 c -1.4,0 -2.6,0 -3.9,0.9 l -2.6,1.9 c -1,0.7 -1.6,1.3 -1.6,3.5 v 5.5 z"
|
||||
id="path556"
|
||||
style="fill:#ffffff" />
|
||||
<path
|
||||
class="st4"
|
||||
d="m 228.9,213.6 c 0,-2.8 0.3,-5.7 3.8,-5.7 3,0 3.8,2.6 3.8,5.1 v 3.1 l 6,-5 c 2.2,-1.8 4.4,-3.3 6.8,-3.3 h 6.1 c 3,0 5.4,1 7.5,3 2.6,2.6 3.4,5.2 3.4,8.7 0,2.6 -0.5,5.4 -3.8,5.4 -2.8,0 -3.9,-2.2 -3.9,-4.7 0,-1.3 0,-2.2 -0.8,-3.4 -1,-1.4 -2.8,-1.4 -4.6,-1.4 H 251 c -1.4,0 -2.5,0.7 -3.8,1.8 l -10.7,8.9 v 19.4 c 0,2.6 -0.6,5.3 -3.8,5.3 -3.2,0 -3.8,-2.6 -3.8,-5.3 z"
|
||||
id="path558"
|
||||
style="fill:#ffffff" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 2.1 MiB |