From a208c30640546846597f2dc7a3793a69f1a36ead Mon Sep 17 00:00:00 2001 From: notplants Date: Fri, 8 Jul 2022 16:21:44 +0200 Subject: [PATCH] kiezpilz.de --- all/test3.gmi | 1 + assets/app.js | 7 +++++ assets/dll.css | 30 ++++++++++++++++---- de/index.md | 28 +++++++++++++++++++ de/test2.gmi | 1 + en/index.md | 27 ++++++++++++++++++ en/test2.gmi | 1 + green.md | 8 ------ index.gmi | 1 - orange.md | 9 ------ pull.sh | 2 +- push.sh | 2 +- test2.md | 3 -- test3.gmi | 1 - theme/layout.php | 71 +++++++++++++++++++++++++++++++++++------------- 15 files changed, 144 insertions(+), 48 deletions(-) create mode 100644 all/test3.gmi create mode 100644 de/index.md create mode 100644 de/test2.gmi create mode 100644 en/index.md create mode 100644 en/test2.gmi delete mode 100644 green.md delete mode 100644 index.gmi delete mode 100644 orange.md delete mode 100644 test2.md delete mode 100644 test3.gmi diff --git a/all/test3.gmi b/all/test3.gmi new file mode 100644 index 0000000..c78da64 --- /dev/null +++ b/all/test3.gmi @@ -0,0 +1 @@ +this is test3 \ No newline at end of file diff --git a/assets/app.js b/assets/app.js index 5048bf0..1655575 100644 --- a/assets/app.js +++ b/assets/app.js @@ -2,6 +2,13 @@ $(document).ready(function() { console.log('++ jquery is working heyyyyy'); + $('.language-option').removeClass('selected'); + if (window.location.pathname.startsWith("/en/")) { + $('.select-english').addClass("selected"); + } else if (window.location.pathname.startsWith("/de/")) { + $('.select-german').addClass("selected"); + } + $('.select-german').click(function(e) { // e.preventDefault(); $('.language-option').removeClass('selected'); diff --git a/assets/dll.css b/assets/dll.css index 6676392..2c53cf6 100644 --- a/assets/dll.css +++ b/assets/dll.css @@ -8,7 +8,9 @@ font-family: 'VG5000'; src: url('fonts/VG5000/VG5000-Regular_web.woff') format('woff'); } - +a { + text-decoration: none; +} body { line-height: 20px; @@ -17,23 +19,31 @@ body { flex-wrap: wrap; font-family: Minipax; background-color: lightblue; - color: white; + #color: white; + color: #5f00b0; margin: 0; } +main { + width: 100%; +} + .center-pane { max-width: 800px; width: 100%; margin: auto; padding: 100px; min-height: 73vh; + font-size: 20px; + font-family: "Times New Roman"; /*border: 1px solid white;*/ } -@media (max-width: 600px) { +@media (max-width: 800px) { .center-pane { padding: 15px; padding-bottom: 100px; + max-width: 90%; } .page-title { margin-top: 60px; @@ -57,6 +67,12 @@ body { .writeup { max-width: 600px; margin: auto; + font-size: 20px; +} + +.writeup a { + #text-decoration: underline; + color: #8900ff; } .language-select { @@ -64,8 +80,12 @@ body { margin-top: 40px; width: 200px; text-align: center; + color: #5f00b0; margin-bottom: 40px; } +.language-select a { + color: #5f00b0; +} .language-options span.language-option { cursor: pointer; } @@ -92,6 +112,6 @@ span.divider { a { - color: white; - /*text-decoration: none;*/ + color: #8900ff; + *text-decoration: none; } \ No newline at end of file diff --git a/de/index.md b/de/index.md new file mode 100644 index 0000000..aa7e4f4 --- /dev/null +++ b/de/index.md @@ -0,0 +1,28 @@ +Kiezpilz ist ein zivil-wissenschaftliches Kollektiv, das die sozialen und ökologischen Ressourcen des gemeinschaftlichen Pilzanbaus erschließt. Wir nutzen ungenutzte Räume und urbane Abfallströme. Unser Ziel ist eine reproduzierbare, gemeinschaftsbasierte Pilzkultivierung. + +Wir sehen die Kultivierung von Pilzen als einen Weg zu nachhaltigeren Lebensstilen, zur Stärkung der Gemeinschaft und zur wechselseitigen Verbundenheit mit nicht-menschlichem Leben. + + +*Träume* + +Wir träumen von Gemeinschaften, welche die natürliche Welt um sich herum und dabei sich untereinander bereichern; Weg von Extraktion und Ausbeutung hin zu Solidarität und Autonomie; Menschen, die befähigt sind, ihr Leben in Zusammenarbeit miteinander und mit den nicht-menschlichen Mitschaffenden um sie herum selbst zu bestimmen. + +Pilze schließen den Kreis natürlicher Zyklen. Sie verwandeln die abgefallenen Blätter in einen reichen, lebendigen Boden, der das Wachstum eines neuen Baumes unterstützt. Pilze zeigen uns die Verbindung von Alt und Neu, von Tod und Wiedergeburt. + +Wir hoffen, durch die Arbeit mit Pilzen die Widerstandsfähigkeit der Gemeinschaft zu fördern - sowohl als direkte Praxis als auch als Quelle für Reflexion und Metapher. + + +*Methoden* + +Mit einfachen Mitteln und Selbstbaumethoden kultivieren wir gemeinschaftlich Pilze auf lokaler Ebene. Unser erster Standort ist eine kleine Austernpilzfarm im Keller des Top Lab im Schillerkiez Neukölln. Wir kultivieren die Pilze mit lokalem Abfallmaterial wie Sägemehl aus einer örtlichen Holzwerkstatt und Kaffeesatz aus örtlichen Cafés. + +Weitere Dokumentationen zu unserem Prozess finden Sie [hier](https://hyphalfusion.network). + +Wir ermuntern dich, unser Experiment zu Hause oder in deiner Nachbarschaft nachzuahmen und geben gerne Material und Wissen weiter. + +
+ +*Contact* + +e-mail — [contact@kiezpilz.de](mailto:contact@kiezpilz.de)
+telegram — [https://t.me/+0JX49SM2jykxMjli](https://t.me/+0JX49SM2jykxMjli) \ No newline at end of file diff --git a/de/test2.gmi b/de/test2.gmi new file mode 100644 index 0000000..49614c6 --- /dev/null +++ b/de/test2.gmi @@ -0,0 +1 @@ +diese ist deutsch test2.gmi \ No newline at end of file diff --git a/en/index.md b/en/index.md new file mode 100644 index 0000000..8b3d788 --- /dev/null +++ b/en/index.md @@ -0,0 +1,27 @@ +Kiez Pilz is a citizen-science collective unfolding the social and ecological benefits of communal fungi cultivation. We are making use of unused spaces and urban waste streams. Our goal is reproducible, community-based fungi cultivation. + +We see fungi cultivation as a portal towards more sustainable ways of living, community empowerment, and reciprocal connection with non-human life. + + +*Dreams* + +We dream of communities that enrich the natural world around them and enrich each other in the process. Moving away from extraction and exploitation towards solidarity and autonomy. People empowered to define their own lives in cooperation with each other and the non-human co-conspirators around them. + +Fungi close the loop of natural cycles. They turn the fallen leaves into into rich living soil that supports the growth of a new tree. Fungi show us the connection of old and new, of death and rebirth. + +We hope to foster community resilience by working with fungi — both as direct practice and as a source for reflection and metaphor. + +*Methods* + +Using low-tech and DIY methods, we cultivate mushrooms at a community scale. Our first space is a fruiting chamber in the basement of Top Lab in Schillerkiez Neukölln where we grow Oyster Mushrooms, Lion's Mane and Reishi. We grow the mushrooms using locally sourced waste materials as substrate, using sawdust from a local wood-shop and coffee grounds from local coffee shops. + +You can find more documentation of our process [here](https://hyphalfusion.network/tag/kiezpilz). + +We encourage you to reproduce our experiment in your home or your neighborhood and are happy to share material and knowledge. + +
+ +*Contact* + +e-mail — [contact@kiezpilz.de](mailto:contact@kiezpilz.de)
+telegram — [https://t.me/+0JX49SM2jykxMjli](https://t.me/+0JX49SM2jykxMjli) \ No newline at end of file diff --git a/en/test2.gmi b/en/test2.gmi new file mode 100644 index 0000000..a4f322f --- /dev/null +++ b/en/test2.gmi @@ -0,0 +1 @@ +this is english test2 \ No newline at end of file diff --git a/green.md b/green.md deleted file mode 100644 index e660e98..0000000 --- a/green.md +++ /dev/null @@ -1,8 +0,0 @@ -# green page - -there will be a fair amount of content on this page that looks various ways - -*lets see* if italics works as well, -why not - -save \ No newline at end of file diff --git a/index.gmi b/index.gmi deleted file mode 100644 index eeaa07e..0000000 --- a/index.gmi +++ /dev/null @@ -1 +0,0 @@ -a new index page \ No newline at end of file diff --git a/orange.md b/orange.md deleted file mode 100644 index 4fa91e9..0000000 --- a/orange.md +++ /dev/null @@ -1,9 +0,0 @@ -testing if pages show up right away - -*cool if they do* - -and nice that we can write here, -and the content continues to show up, -on the right side as well - -could be better, could be worse \ No newline at end of file diff --git a/pull.sh b/pull.sh index eff6566..41409c1 100644 --- a/pull.sh +++ b/pull.sh @@ -1 +1 @@ -rsync -avWh -e "ssh -i ~/.ssh/do_rsa2" root@147.182.177.135:/srv/lichen-with-markdown/ ~/computer/projects/lichen-with-markdown/ \ No newline at end of file +rsync -avWh -e "ssh -i ~/.ssh/do_rsa2" root@147.182.177.135:/srv/kiezpilz-lichen/ ~/computer/projects/lichen/kp.local/ \ No newline at end of file diff --git a/push.sh b/push.sh index c506889..240bd07 100755 --- a/push.sh +++ b/push.sh @@ -1 +1 @@ -rsync -avWh -e "ssh -i ~/.ssh/do_rsa2" ~/computer/projects/lichen-with-markdown/ root@147.182.177.135:/srv/lichen-with-markdown/ \ No newline at end of file +rsync -avWh -e "ssh -i ~/.ssh/do_rsa2" ~/computer/projects/lichen/kp.local/ root@147.182.177.135:/srv/kiezpilz-lichen/ \ No newline at end of file diff --git a/test2.md b/test2.md deleted file mode 100644 index 606a6b5..0000000 --- a/test2.md +++ /dev/null @@ -1,3 +0,0 @@ -# Lichen - -this is the index page and [here](mfowler.info) is an inline link. \ No newline at end of file diff --git a/test3.gmi b/test3.gmi deleted file mode 100644 index 1ea1d59..0000000 --- a/test3.gmi +++ /dev/null @@ -1 +0,0 @@ -lichen test899 \ No newline at end of file diff --git a/theme/layout.php b/theme/layout.php index 2f552a7..0a2e5b9 100644 --- a/theme/layout.php +++ b/theme/layout.php @@ -1,28 +1,61 @@ - + + - - <?php echo $title ?> - - + + + + + + + + + + + KiezPilz + + + + + + + + + + + + + + + + - -
- - - ← — Back - - -
+ +
- +
+ +
+ KiezPilz +
+ +
+ +
+ +
+
+ En | De +
+
+
+ +