1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
<?php
require_once dirname(__DIR__) . '/layout.php';
$i18n = i18n([
'de' => [
'intro.0' => 'Auflistung aller Projekte, an denen ich arbeite oder arbeiten möchte.',
'intro.1' => 'Alle genannten Softwareprojekte sollen Open-Source sein.',
'intro.2' => 'Alle genannten Unternehmungen sollen als (gemeinnützige) Vereine bzw genossenschaftlich organisiert sein.',
'intro.3' => 'Keine kapitalistischen "Geld ist Selbstzweck" Bestrebungen.',
'footnotes.0' => '*Projekt, das ich einfach nur verwirklicht sehen möchte und nicht die persönliche Anforderung habe, dort direkt mitwirken zu müssen',
],
]);
$t = $i18n['translate'];
$projects = [
'stores_places' => [
'title' => 'Läden & Orte',
'items' => [
[
'title' => 'Repair-Café*',
],
[
'title' => 'Offener, kreativer Begegnungsort*',
],
[
'title' => 'Japanische Kultur-Events',
],
[
'title' => 'Spielwarenladen mit offenem Treffpunkt',
'description' => 'ausreichend Platz und Tische (für zB Magic the Gathering)',
],
],
],
'it' => [
'title' => 'Soft- und Hardware',
'items' => [
[
'title' => 'Lokale, regionale, dezentralisierte Alternative zu Lieferando',
],
[
'title' => 'Nachhaltige:r Server-Hardware-Infrastruktur Lieferant*in/Dienstleister*in',
],
[
'title' => 'Einfaches, niederschwelliges, erweiterbares, flexibles Server-Software-Installations-Management-Interface',
],
[
'title' => 'Modularer Web-Browser*',
'description' => 'HTML-, JS, CSS-Parser, etc. als standalone Module als Alternativen zu bestehenden tightly-coupled Browsern',
'link' => 'https://ladybird.dev',
],
[
'title' => 'Single person (Flat-File?) Matrix Server',
],
[
'title' => 'Source-to-Source Compiler Framework',
'description' => 'In Kombination mit eigener Programmiersprache als Input',
],
],
],
'educational' => [
'title' => 'Educational',
'items' => [
[
'title' => 'GPS-Game mit Pflanzen und Tieren',
'description' => 'Mobile-Game - Pokémon Go-like',
],
[
'title' => 'Elements',
'description' => 'Tabletop - Nachhaltig produziertes, offenes, educational, Magic-like Kartenspiel mit historischen Referenzmaterialien',
],
[
'title' => 'Historische Kriege und Scharmützel',
'description' => 'Computerspiel - Fire Emblem-like',
],
],
],
'hobby' => [
'title' => 'Hobby-Projekte',
'items' => [
[
'title' => 'BomberTux Story',
'link' => 'https://gitlab.com/bombertux/bombertux-story',
],
[
'title' => 'BomberTux Hero',
'link' => 'https://gitlab.com/bombertux/bombertux-hero',
],
[
'title' => 'Flat-File Forms',
'link' => 'https://gitlab.com/dweipert-3138720606/flat-file-forms',
],
],
],
'other' => [
'title' => 'Sonstige',
'items' => [
[
'title' => '"Wie nachhaltig leben?"-Buch',
'description' => 'Leitfaden für nachhaltiges Leben im Raum Bad Neustadt',
'link' => 'https://book.dweipert.de',
],
],
],
];
ob_start();
?>
<div class="container">
<p>
<?php echo $t('intro.0'); ?>
</p>
<p>
<?php echo $t('intro.1'); ?><br>
<?php echo $t('intro.2'); ?><br>
<?php echo $t('intro.3'); ?>
</p>
<?php foreach ($projects as $project): ?>
<div>
<h2><?php echo $project['title']; ?></h2>
<ul>
<?php foreach ($project['items'] as $item): ?>
<li>
<?php if (isset($item['link'])): ?>
<a href="<?php echo $item['link']; ?>" target="_blank">
<?php echo $item['title']; ?>
</a>
<?php else: ?>
<span v-else><?php echo $item['title']; ?></span>
<?php endif; ?>
<?php if (isset($item['description'])): ?>
<span>— <?php echo $item['description']; ?></span>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php endforeach; ?>
<p>
<small>
<?php echo $t('footnotes.0'); ?>
</small>
</p>
</div>
<?php
$content = ob_get_clean();
layout(content: $content);
|