Compare commits
61 commits
2-bisschen
...
main
Author | SHA1 | Date | |
---|---|---|---|
Stefan Bethke | f4360e705b | ||
Stefan Bethke | 8c0eb65d37 | ||
Stefan Bethke | 7326ec9bbf | ||
Stefan Bethke | fc235e6310 | ||
Stefan Bethke | d97636bc24 | ||
Stefan Bethke | d037eca506 | ||
Stefan Bethke | 8eaf568f7d | ||
Stefan Bethke | 3e50cb284a | ||
Stefan Bethke | 95b4d7a70a | ||
Stefan Bethke | 5bd94a6a09 | ||
Stefan Bethke | 574d51914c | ||
Stefan Bethke | 0da4340001 | ||
Stefan Bethke | b90f8f7462 | ||
stb | a665c5c9e9 | ||
stb | 050e654e3c | ||
Stefan Bethke | 38ae2d9644 | ||
Stefan Bethke | a56c7a7dec | ||
Stefan Bethke | 595ce65b62 | ||
Stefan Bethke | 7b1eeac442 | ||
Stefan Bethke | fbfb86c595 | ||
Stefan Bethke | 1ad04f335a | ||
Stefan Bethke | 3f472c96ee | ||
Stefan Bethke | 39ddb061e6 | ||
Stefan Bethke | 20f693a6b6 | ||
stb | a81004a792 | ||
Stefan Bethke | 19ee1219bb | ||
Stefan Bethke | 3aa02e6909 | ||
Renovate | c5f0ccefa8 | ||
stb | 9ff7c4a4be | ||
Renovate | b7bb2d6a3b | ||
Stefan Bethke | 16d71fd24c | ||
Stefan Bethke | 6ee63ff277 | ||
stb | f073970d7b | ||
Renovate | e3d3c9276b | ||
stb | f771e4d6b3 | ||
Stefan Bethke | 6a101580f6 | ||
Renovate | cdbf72085e | ||
Stefan Bethke | e8ac961432 | ||
Stefan Bethke | 1c9a607f72 | ||
Stefan Bethke | 698a8dbf07 | ||
Stefan Bethke | 3de2df1ec0 | ||
Stefan Bethke | 29862bc774 | ||
Stefan Bethke | 2827b62481 | ||
Stefan Bethke | ae0ba798cf | ||
Stefan Bethke | f77f107de9 | ||
Stefan Bethke | b9893e76f3 | ||
Stefan Bethke | d971268d74 | ||
Stefan Bethke | 9c8829db3a | ||
Stefan Bethke | f093c888c7 | ||
Stefan Bethke | e6bf4eab87 | ||
Stefan Bethke | 44bcdf9d80 | ||
Stefan Bethke | 840d9ef4cb | ||
Stefan Bethke | 75d67c7c04 | ||
Stefan Bethke | 2f9b0c3f3c | ||
Stefan Bethke | cdb48cf335 | ||
Stefan Bethke | 57f8378072 | ||
Stefan Bethke | 6113ad7c94 | ||
Stefan Bethke | 711bd3c242 | ||
Stefan Bethke | 55bed145c5 | ||
Stefan Bethke | 2d5416b06d | ||
Stefan Bethke | 5e87d5d5b0 |
23
.forgejo/workflows/cleanup.yaml
Normal file
|
@ -0,0 +1,23 @@
|
|||
on:
|
||||
pull_request:
|
||||
types:
|
||||
- closed
|
||||
|
||||
jobs:
|
||||
cleanup-staging:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: code.forgejo.org/oci/node:20-bookworm
|
||||
steps:
|
||||
- name: Pipeline info PR
|
||||
run: |
|
||||
echo "Run triggered by ${{ github.event_name }} (${{ github.event.action }}) on ref ${{ github.ref_name }}"
|
||||
|
||||
- name: Staging Deployment - Prepare keys
|
||||
run: |
|
||||
echo "${{ secrets.SSH_DEPLOY_KEY }}" > deploykey.priv
|
||||
chmod 400 deploykey.priv
|
||||
echo "${{ secrets.SSH_KNOWN_HOSTS_FILE }}" > ./known_hosts
|
||||
- name: Staging Deployment - Remove PR from staging
|
||||
run: |
|
||||
ssh -i deploykey.priv -o 'UserKnownHostsFile ./known_hosts' ht-ccchh-website-deploy@public-web-static-intern.hamburg.ccc.de -t "rm -r /var/www/staging.hackertours.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/"
|
80
.forgejo/workflows/deploy.yaml
Normal file
|
@ -0,0 +1,80 @@
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
|
||||
env:
|
||||
TZ: Europe/Berlin
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: docker.io/hugomods/hugo:latest
|
||||
steps:
|
||||
- name: Pipeline info
|
||||
run: |
|
||||
echo "Run triggered by ${{ github.event_name }} (${{ github.event.action }}) on ref ${{ github.ref_name }}"
|
||||
|
||||
- name: Install packages
|
||||
run: |
|
||||
apk update
|
||||
# For CI actions.
|
||||
apk add nodejs-current
|
||||
# For website build.
|
||||
apk add tzdata coreutils curl jq git
|
||||
# For uploading.
|
||||
apk add rsync openssh
|
||||
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0 # pull full history for page lastmod by git commit date
|
||||
submodules: recursive
|
||||
|
||||
- name: Patch baseURL (staging only)
|
||||
if: github.ref_name != 'main'
|
||||
run: |
|
||||
sed -i "s#baseURL: 'https://hackertours.hamburg.ccc.de/'#baseURL: 'https://staging.hackertours.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/'#" hugo.yaml
|
||||
|
||||
- name: Build website (prod)
|
||||
if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref_name == 'main'
|
||||
run: |
|
||||
hugo
|
||||
- name: Build website (staging)
|
||||
if: github.ref_name != 'main'
|
||||
run: |
|
||||
hugo --buildFuture --buildDrafts
|
||||
|
||||
- name: Deploy - Prepare keys
|
||||
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'schedule'
|
||||
run: |
|
||||
echo "${{ secrets.SSH_DEPLOY_KEY }}" > deploykey.priv
|
||||
chmod 400 deploykey.priv
|
||||
echo "${{ secrets.SSH_KNOWN_HOSTS_FILE }}" > ./known_hosts
|
||||
|
||||
- name: Deploy - Upload PR to staging
|
||||
if: github.event_name == 'pull_request'
|
||||
run: |
|
||||
echo "Deploying to staging.hamburg.ccc.de/pr${{ github.event.pull_request.number }}"
|
||||
rsync -v -r --delete -e "ssh -i deploykey.priv -o 'UserKnownHostsFile ./known_hosts'" public/ ht-ccchh-website-deploy@public-web-static-intern.hamburg.ccc.de:/var/www/staging.hackertours.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/
|
||||
- name: Deploy - Add comment to PR with staging URL
|
||||
if: github.event_name == 'pull_request' && github.event.action == 'opened'
|
||||
run: |
|
||||
curl \
|
||||
-X POST \
|
||||
${{ github.event.pull_request.base.repo.url }}/issues/${{ github.event.pull_request.number }}/comments \
|
||||
-H "Content-Type: application/json" \
|
||||
-H "Authorization: token $GITHUB_TOKEN" \
|
||||
--data '{ "body": "You can view your changes at https://staging.hackertours.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/" }'
|
||||
|
||||
- name: Deploy - Upload to prod
|
||||
if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref_name == 'main'
|
||||
run: |
|
||||
rsync -v -r --delete -e "ssh -i deploykey.priv -o 'UserKnownHostsFile ./known_hosts'" public/ ht-ccchh-website-deploy@public-web-static-intern.hamburg.ccc.de:/var/www/hackertours.hamburg.ccc.de/
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: github.event_name == 'pull_request'
|
||||
with:
|
||||
name: website-build
|
||||
path: public/
|
|
@ -1,30 +0,0 @@
|
|||
variables:
|
||||
GIT_SUBMODULE_STRATEGY: recursive
|
||||
|
||||
stages:
|
||||
- site
|
||||
- image
|
||||
|
||||
build-site:
|
||||
stage: site
|
||||
image: docker.io/hugomods/hugo:latest
|
||||
script:
|
||||
- hugo
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
expire_in: 1 hour
|
||||
|
||||
build-image:
|
||||
stage: image
|
||||
image:
|
||||
name: gcr.io/kaniko-project/executor:debug
|
||||
entrypoint: [""]
|
||||
script:
|
||||
- mkdir -p /kaniko/.docker
|
||||
- echo "{\"auths\":{\"${CI_REGISTRY}\":{\"auth\":\"$(printf "%s:%s" "${CI_REGISTRY_USER}" "${CI_REGISTRY_PASSWORD}" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json
|
||||
- >-
|
||||
/kaniko/executor
|
||||
--context "${CI_PROJECT_DIR}"
|
||||
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
|
||||
--destination "${CI_REGISTRY_IMAGE}/hackertours:latest"
|
|
@ -1,4 +1,4 @@
|
|||
FROM docker.io/nginx
|
||||
FROM docker.io/nginx:1.27.1-bookworm
|
||||
|
||||
RUN rm -rf /usr/share/nginx/html && mkdir -p /usr/share/nginx/html
|
||||
COPY public /usr/share/nginx/html
|
|
@ -1,5 +1,12 @@
|
|||
# Hackertours Web Site
|
||||
|
||||
## Run in dev mode
|
||||
|
||||
```shell
|
||||
hugo server --buildFuture --buildDrafts
|
||||
```
|
||||
|
||||
Then open http://localhost:1313
|
||||
|
||||
## Build locally
|
||||
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
.header__intro_headline {
|
||||
font: bold var(--fs-xxl) "Arial";
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
.header__intro_text {
|
||||
font-family: var(--ff-body)
|
||||
}
|
||||
table, th, td {
|
||||
border: 1px solid;
|
||||
}
|
||||
|
|
24
content/de/37c3/_index.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
title: 37c3 Touren
|
||||
#listsort: true
|
||||
weight: 10
|
||||
#tables: true
|
||||
|
||||
---
|
||||
|
||||
Diese Touren haben wir zum 37c3 in 2023 angeboten.
|
||||
|
||||
| Zeit | Tag 1 (27.12.) | Tag 2 (28.12.) | Tag 3 (29.12.) |
|
||||
|------|-----------------------------------------------------------|-----------------------------------------------------------|-----------------------------------------------------------|
|
||||
| 10 | – | 10:45 [U-434]({{< relref "37c3/u-434" >}}) | – |
|
||||
| 11 | – | 11:15 [Eisenbahnmuseum]({{< relref "37c3/eisenbahnmuseum" >}}) | 11:05 [U-434]({{< relref "37c3/u-434" >}}) |
|
||||
| 12 | 12:30 [electrum]({{< relref "37c3/electrum" >}}) | 12:40 [Cap San Diego]({{< relref "37c3/cap-san-diego" >}}) | 12:40 [Cap San Diego]({{< relref "37c3/cap-san-diego" >}}) |
|
||||
| 13 | – | 13:40 [Alter Elbtunnel]({{< relref "37c3/alter-elbtunnel" >}}) | 13:20 [Energiebunker]({{< relref "37c3/energiebunker" >}}) |
|
||||
| 14 | 14:40 [Alter Elbtunnel]({{< relref "37c3/alter-elbtunnel" >}}) | 14:45 [MS Stubnitz]({{< relref "37c3/chaostrawler" >}}) | 14:35 [Energiebunker]({{< relref "37c3/energiebunker" >}}) |
|
||||
| | | | 14:40 [Alter Elbtunnel]({{< relref "37c3/alter-elbtunnel" >}}) |
|
||||
| 15 | 15:45 [U-434]({{< relref "37c3/u-434" >}}) | 15:40 [Alter Elbtunnel]({{< relref "37c3/alter-elbtunnel" >}}) | |
|
||||
| 16 | 16:40 [Alter Elbtunnel]({{< relref "37c3/alter-elbtunnel" >}}) | – | 16:40 [Alter Elbtunnel]({{< relref "37c3/alter-elbtunnel" >}}) |
|
||||
| 17 | | | | |
|
||||
| 18 | | 18:00 [Hansaplatz]({{< relref "37c3/hansaplatz" >}})| | |
|
||||
|
||||
Wir haben keine Touren an Tag 4 (30.12.).
|
Before Width: | Height: | Size: 313 KiB After Width: | Height: | Size: 313 KiB |
Before Width: | Height: | Size: 453 KiB After Width: | Height: | Size: 453 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Alter Elbtunnel'
|
||||
title: '37c3 Alter Elbtunnel'
|
||||
summary: |
|
||||
Blick hinter die Kulissen: Der St. Pauli Elbtunnel verbindet den Stadtteil St. Pauli mit der Insel Steinwerder. Er wurde zwischen 1907 und 1911 erbaut und war damals einer der ersten Straßentunnel weltweit. Bei dieser Tour führt Euch Thomas Heidborn hinauf in die Kuppel des Kopfgebäudes auf der St.Pauli-Seite und gedanklich zurück in die Zeit, als alles begann.
|
||||
---
|
Before Width: | Height: | Size: 222 KiB After Width: | Height: | Size: 222 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Cap San Diego'
|
||||
title: '37c3 Cap San Diego'
|
||||
summary: |
|
||||
Die Cap San Diego ist ein 1961 gebauter Stückgutfrachter, der bis heute fahrtüchtig ist. Auf unserer Tour besichtigen wir u. a. die Brücke und den Maschinenraum. Die Ausstellung nimmt uns mit in die Welt des See-Warenverkehrs in der Zeit vor den Containern.
|
||||
---
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Motorschiff Stubnitz'
|
||||
title: '37c3 Motorschiff Stubnitz'
|
||||
summary: |
|
||||
Ihr wollt mal sehen, wo eigentlich das Teleshop-Studio von der rc3 stand? Oder wie ein Schiff der DDR-Hochsee-Fischfangflotte von Innen aussieht? Und wie dazu die Technik ausschaut, die das Schiff bis heute als gemeinnütziges, partizipatives Kultur.Raumschiff über Wasser und auf der Sichtfläche Hamburgs hält? Kommt rum für eine Tour auf dem Motorschiff Stubnitz!
|
||||
---
|
||||
|
@ -22,7 +22,7 @@ Ganz allgemein sind wir gerade wieder ein einer Phase, in der wir dringend Dritt
|
|||
* Sprache: Deutsch, Englisch eingeschränkt
|
||||
* Kosten: 15€
|
||||
* Treffen am Hackertours-Desk: **14:45 Uhr**
|
||||
* Alternativ könnt ihr auch direkt zur Location kommen. In diesem Fall sagt uns bitte per Mail an [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de) rechtzeitig Bescheid. Bitte seid **spätestens eine Stunde** nach der oben angegebenen Zeit an der Location: MS Stubnitz, Kirchenpauerstraße 26.
|
||||
* Alternativ könnt ihr auch direkt zur Location kommen. In diesem Fall sagt uns bitte per Mail an [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de) rechtzeitig Bescheid. Bitte seid **spätestens eine Stunde** nach der oben angegebenen Zeit an der Location: MS Stubnitz, Kirchenpauerkai 29.
|
||||
* Location: [MS Stubnitz](https://www.stubnitz.com), U+S Elbbrücken
|
||||
* Veranstalter: Motorschiff Stubnitz e.V.
|
||||
* Barrierefreiheit: Schiff ist nicht barreriefrei, viele Stufen, schmale Treppen etc.
|
Before Width: | Height: | Size: 229 KiB After Width: | Height: | Size: 229 KiB |
Before Width: | Height: | Size: 234 KiB After Width: | Height: | Size: 234 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Eisenbahnmuseum Lokschuppen Aumühle'
|
||||
title: '37c3 Eisenbahnmuseum Lokschuppen Aumühle'
|
||||
summary: |
|
||||
Im Eisenbahnmuseum Lokschuppen Aumühle hat der Verein Verkehrsamateure
|
||||
und Museumsbahn e. V. Fahrzeuge aus 150 Jahren Eisenbahngeschichte rund
|
Before Width: | Height: | Size: 3.7 MiB After Width: | Height: | Size: 3.7 MiB |
Before Width: | Height: | Size: 3.4 MiB After Width: | Height: | Size: 3.4 MiB |
Before Width: | Height: | Size: 303 KiB After Width: | Height: | Size: 303 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Electrum - Das Museum der Elektrizität'
|
||||
title: '37c3 Electrum - Das Museum der Elektrizität'
|
||||
summary: |
|
||||
Das electrum ist Hamburgs Museum der Elektrizität und Technik. Ohne Strom geht’s nicht – seit 130 Jahren begleitet uns die Elektrizität durch unseren Alltag. Rund eintausend technische Geräte aus allen Epochen finden Sie im electrum, Hamburgs Museum der Elektrizität im Harburger Binnenhafen.
|
||||
---
|
Before Width: | Height: | Size: 669 KiB After Width: | Height: | Size: 669 KiB |
Before Width: | Height: | Size: 250 KiB After Width: | Height: | Size: 250 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Energiebunker Wilhelmsburg'
|
||||
title: '37c3 Energiebunker Wilhelmsburg'
|
||||
summary: |
|
||||
Ein Leuchtturm der Energiewende: Viel zu lange war der alte Flakbunker in Wilhelmsburg ein architektonischer Schandfleck. Heute ist das ehemalige Kriegsbauwerk ein weltweit einzigartiges Beispiel für den innovativen Umgang mit regenerativen Energien und Vorreiter für andere regionale Kraftwerke weltweit. Beim Rundgang durch den Bunker wird die Entwicklung vom Kriegsbauwerk hin zu einem innovativen Leuchtturmprojekt der Energiewende aufgezeigt. Im Anschluss können Sie im Café vju den unvergleichlichen Panoramablick über die Stadt genießen.
|
||||
---
|
22
content/de/37c3/hansaplatz/index.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
title: '37c3 KI-Videoüberwachung am Hansaplatz'
|
||||
summary: |
|
||||
Der Hansaplatz in der Nähe des Hamburger Hauptbahnhof ist das KI-Überwachungslabor der Stadt. Die Polizei Hamburg experimentiert hier mit Verhaltenserkennung. Mit einer Strichfiguren-KI von Fraunhofer wurden Passanten im Rahmen eines Pilotprojekts "digital skelettiert" und analysiert. Während dieses Überwachungsspaziergangs beleuchten wir dieses Projekt aus der Nähe und fordern von der Stadt ein Ende der Überwachung.
|
||||
---
|
||||
|
||||
Der Hansaplatz in der Nähe des Hamburger Hauptbahnhof ist das KI-Überwachungslabor der Stadt. Die Polizei Hamburg experimentiert hier mit Verhaltenserkennung. Mit einer Strichfiguren-KI von Fraunhofer wurden Passanten im Rahmen eines Pilotprojekts "digital skelettiert" und analysiert. Während dieses Überwachungsspaziergangs beleuchten wir dieses Projekt aus der Nähe und fordern von der Stadt ein Ende der Überwachung.
|
||||
|
||||
![](https://pad.hamburg.ccc.de/uploads/179c2b22-24c1-48a6-a00c-e8cd9835e8dc.png)
|
||||
|
||||
Bei dieser Veranstaltung handelt es sich um einen angemeldeten Aufzug ("Demonstration"). Die Polizei wurde aufgefordert, die Kameras für die Dauer der Veranstaltung sichtbar außer Betrieb zu nehmen. Die Polizei teilt mit, dass sie die gesetzlichen Vorgaben einhalten wird.
|
||||
|
||||
## Daten
|
||||
* Tag 2 (28.12.) **18:00 Uhr**
|
||||
* Dauer: 1,5 Stunden (mit gemeinsamer An- und Abreise)
|
||||
* Kosten: Kostenlos (**kein Ticket notwendig**)
|
||||
* Sprache: Deutsch
|
||||
* Barrierefreiheit: bedingt gegeben. Wir empfehlen, schon etwas früher zum Hansaplatz aufzubrechen, weil die Fahrstuhl-Kapazität an den Bahnhöfen beschränkt ist.
|
||||
* Treffen am Hackertours-Desk: **18:00 Uhr**.
|
||||
* Alternativ könnt ihr auch direkt zur Location kommen. Wir treffen uns ab 18:15 Uhr auf dem Heidi-Kabel-Platz in unmittelbarer Nähe zum Hauptbahnhof und ziehen dann um 18:30 Uhr gemeinsam zum Hansaplatz.
|
||||
* Location: Hansaplatz
|
||||
* Veranstalter: CCC Hansestadt Hamburg e.V.
|
Before Width: | Height: | Size: 336 KiB After Width: | Height: | Size: 336 KiB |
Before Width: | Height: | Size: 371 KiB After Width: | Height: | Size: 371 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'U-Boot-Museum Hamburg U-434'
|
||||
title: '37c3 U-Boot-Museum Hamburg U-434'
|
||||
summary: |
|
||||
Ein technisches Abenteuer erwartet Sie, bei dem Sie in eines der größten nicht-atomaren Jagd- und Spionage U-Boote seiner Zeit herabsteigen können. Unser Führungspersonal führt Sie nicht nur mit tollen Hintergrundinformationen durch das U-Boot, sondern auch exklusiv durch die Kommando-Zentrale.
|
||||
---
|
||||
|
@ -19,7 +19,7 @@ Aus diesem Grund wäre das Tango wohl auch für U-Boote-Abwehrkräfte in flachem
|
|||
* Tage:
|
||||
* Tag 1 (27.12.) **15:45 Uhr**
|
||||
* Tag 2 (28.12.) **10:45 Uhr**
|
||||
* Tag 3 (29.12.) **10:45 Uhr**
|
||||
* Tag 3 (29.12.) **11:05 Uhr**
|
||||
* Dauer: 45 Minuten
|
||||
* Sprache: Deutsch, Englisch eingeschränkt
|
||||
* Kosten: 13€
|
17
content/de/38c3/_index.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
title: 38c3 Touren
|
||||
#listsort: true
|
||||
weight: 10
|
||||
#tables: true
|
||||
menus:
|
||||
main:
|
||||
name: Touren
|
||||
---
|
||||
|
||||
Diese Touren bieten wir zum 38c3 an.
|
||||
|
||||
|Zeit| Tag 1 (27.12.) | Tag 2 (28.12.) | Tag 3 (29.12.) |
|
||||
|----|----------------|----------------|----------------|
|
||||
| tbd | | | | |
|
||||
|
||||
Wir haben keine Touren an Tag 4 (30.12.).
|
Before Width: | Height: | Size: 313 KiB After Width: | Height: | Size: 313 KiB |
Before Width: | Height: | Size: 453 KiB After Width: | Height: | Size: 453 KiB |
33
content/de/38c3/alter-elbtunnel/index.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
title: '38c3 Alter Elbtunnel'
|
||||
date: 2024-10-31T09:00:00+01:00
|
||||
summary: |
|
||||
Blick hinter die Kulissen: Der St. Pauli Elbtunnel verbindet den Stadtteil St. Pauli mit der Insel Steinwerder. Er wurde zwischen 1907 und 1911 erbaut und war damals einer der ersten Straßentunnel weltweit. Bei dieser Tour führt Euch Thomas Heidborn hinauf in die Kuppel des Kopfgebäudes auf der St.Pauli-Seite und gedanklich zurück in die Zeit, als alles begann.
|
||||
---
|
||||
|
||||
## „Drunter durch“ - der Alte Elbtunnel
|
||||
Der St. Pauli Elbtunnel verbindet den Stadtteil St. Pauli mit der Insel Steinwerder. Er wurde zwischen 1907 und 1911 erbaut und war damals einer der ersten Straßentunnel weltweit. Heute ist er touristische Attraktion, aber auch wichtiges Element für die Mobilität in der Stadt. Das Erscheinungsbild, die Konstruktion mit Lastenfahrstühlen für ganze Pferdefuhrwerke, das neogotische Design, einfach alles an diesem preisgekrönten Bauwerk ist Zeugnis für den Fortschritt in Technik und Infrastruktur seiner Zeit. Technikinteressierte erleben den Alten Elbtunnel als Zeugnis der Ingenieurskunst und das Innovationsstreben dieser Ära mit allen Sinnen.
|
||||
|
||||
![Das Fahrstuhlgebäude auf der Nordseite ©Andreas Schmidt-Wiethoff](./01_Andreas_Schmidt-Wiethoff.jpeg)
|
||||
|
||||
![Der Tunnel ©Andreas Schmidt-Wiethoff](./02_Andreas_Schmidt-Wiethoff.jpeg)
|
||||
|
||||
## So weit, so bekannt
|
||||
Bei dieser Tour führt Euch Thomas Heidborn hinauf in die Kuppel des Kopfgebäudes auf der St.Pauli-Seite und gedanklich zurück in die Zeit, als alles begann. Er ist seit mehr als 39 Jahren Tunnelaufseher und kennt die Details und die Anekdoten aus dem FF. Es geht dann durch den Tunnel und er lenkt Eure Aufmerksamkeit auf die oft verborgenen Details. Im sonst nicht zugänglichen Schauraum, dem kleinen Museum auf der Südseite, seht Ihr Artefakte, historische Maschinen und ein großes, Profi-Modell der gesamten Anlage – natürlich mit fahrenden Aufzügen. Die Tour endet mit einem begleiteten Blick über die Elbe auf St. Pauli, die Landungsbrücken, die Stadt Hamburg, die wir gerne „die schönste der Welt“ nennen.
|
||||
|
||||
|
||||
## Daten
|
||||
* Touren:
|
||||
* Tag 1 (27.12.) **17:15 Uhr**
|
||||
* Tag 2 (28.12.) **14:15 Uhr** in Englisch
|
||||
* Tag 2 (28.12.) **18:15 Uhr**
|
||||
* Tag 3 (29.12.) **17:15 Uhr**
|
||||
* Dauer: 1,5 Stunden
|
||||
* Sprache: Deutsch, eine Tour auf Englisch
|
||||
* Kosten: 18€
|
||||
* Treffen am Hackertours-Desk: **wie oben angegeben**.
|
||||
* Alternativ könnt ihr auch direkt zur Location kommen. In diesem Fall sagt uns bitte per Mail an [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de) rechtzeitig Bescheid. Bitte seid **spätestens eine Stunde** nach der oben angegebenen Zeit an der Location: Alter Elbtunnel, Kopfgebäude bei den Personenaufzügen
|
||||
* Location: St. Pauli Elbtunnel - https://www.hamburg.de/alter-elbtunnel/, direkt an den Hamburger Landungsbrücken (U+S Landungsbrücken)
|
||||
* Veranstalter: prima events GmbH
|
||||
* Wichtig: Die Kuppel kann nur über die Treppen erreicht werden und ist nicht barrierefrei. Eine Teilnahme ist trotzdem möglich. Die zurückzulegenden Wege ab/zum Treffpunkt summieren sich auf ca. 1.500 Meter. Tunnel und Schauraum sind barrierearm.
|
||||
* Credit: © HPA, Andreas Schmidt-Wiethoff
|
29
content/de/38c3/chaostrawler/index.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
title: '38c3 Motorschiff Stubnitz'
|
||||
date: 2024-10-31T09:00:00+01:00
|
||||
summary: |
|
||||
Ihr wollt mal sehen, wo eigentlich das Teleshop-Studio von der rc3 stand? Oder wie ein Schiff der DDR-Hochsee-Fischfangflotte von Innen aussieht? Und wie dazu die Technik ausschaut, die das Schiff bis heute als gemeinnütziges, partizipatives Kultur.Raumschiff über Wasser und auf der Sichtfläche Hamburgs hält? Kommt rum für eine Tour auf dem Motorschiff Stubnitz!
|
||||
---
|
||||
|
||||
Ihr wollt mal sehen, wo eigentlich das Teleshop-Studio von der rc3 stand? Oder wie ein Schiff der DDR-Hochsee-Fischfangflotte von Innen aussieht? Und wie dazu die Technik ausschaut, die das Schiff bis heute als gemeinnütziges, partizipatives Kultur.Raumschiff über Wasser und auf der Sichtfläche Hamburgs hält? Kommt rum für eine Tour auf dem Motorschiff Stubnitz!
|
||||
|
||||
![Die MS Stubnitz an ihrem Liegeplatz in der Hafencity](stubnitz_hauke_dressler_liegeplatz_stubnitz_elbbrücken_web.jpg)
|
||||
![Die Brücke der MS Stubnitz](stubnitz_bruecke_workshop_hs_Karlsruhe.jpg)
|
||||
|
||||
Die Stubnitz wurde als Kühlschiff 1964 in Stralsund gebaut, nach der Wende zum mobilen Kunst- und Kulturschiff transformiert und war seitdem in über 20 europäischen Hafenstädten als schwimmender Kulturort aktiv. Seit 2003 steht sie unter Denkmalschutz, mittlerweile ist sie eines der ältesten technisch authentischen maritimen Fahrzeuge diese Größe, das noch hochseetauglich ist. An Bord finden normalerweise Konzerte, Parties, Lesungen, Performances und Corporate Events statt. Im Rahmen des 37c3 führen euch Crewmitglieder durch die sonst verschlossenen Teile des 80 Meter langen Schiffes - mit dabei z.B: Maschinenraum, Funkraum, "Serverraum", Kammern im nahezu Originalzustand, Laderäume, Brücke und natürlich die Veranstaltungsräume und das ehemalige Studio vom Teleshop... uh yeah.
|
||||
|
||||
Falls ihr kein Ticket mehr klicken könnt seid nicht betrübt, vielleicht gibt es dann nochmal neue Kontingente und am Besten zückt ihr ohnehin die Notizbüchlein und tragt ein: Ab 18 Uhr gibts an Tag 2 (28.12.23) an Bord auch die "Cable Trash - 37c3 Congress-Edition" (18:00 tales from the depths (kilosecond presentations), ~20:00 live: die stadt der zukunft (bremen), ~22:00 djs (tba) ... open end: https://cabletrash.de/ct39.htm - auch hier gibts Zeit auf dem Schiff - ungeführt in den öffentlichen Bereichen - rumzustreunern.
|
||||
Falls ihr in der Umgebung Hamburg wohnt und Lust habt uns generell mit euren Skills und eurer Motivation zu helfen, meldet euch unter: it-crew@stubnitz.com, wir haben viel vor, viel zu bieten und suchen nach Verstärkung im Team.
|
||||
|
||||
Ganz allgemein sind wir gerade wieder ein einer Phase, in der wir dringend Drittmittel und Spenden sammeln müssen, helft uns & erzählt das weiter. Wenn Du keine 15€ für eine Tour übrig hast, dann sag uns bei der Führung bescheid und wir erstatten Dir die Hälfte.
|
||||
|
||||
## Daten
|
||||
* Tag 2 (28.12.) **14:45 Uhr**
|
||||
* Dauer: 1 Stunde
|
||||
* Sprache: Deutsch, Englisch eingeschränkt
|
||||
* Kosten: 15€
|
||||
* Treffen am Hackertours-Desk: **14:45 Uhr**
|
||||
* Alternativ könnt ihr auch direkt zur Location kommen. In diesem Fall sagt uns bitte per Mail an [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de) rechtzeitig Bescheid. Bitte seid **spätestens eine Stunde** nach der oben angegebenen Zeit an der Location: MS Stubnitz, Kirchenpauerkai 29.
|
||||
* Location: [MS Stubnitz](https://www.stubnitz.com), U+S Elbbrücken
|
||||
* Veranstalter: Motorschiff Stubnitz e.V.
|
||||
* Barrierefreiheit: Schiff ist nicht barreriefrei, viele Stufen, schmale Treppen etc.
|
Before Width: | Height: | Size: 229 KiB After Width: | Height: | Size: 229 KiB |
Before Width: | Height: | Size: 234 KiB After Width: | Height: | Size: 234 KiB |
47
content/de/38c3/eisenbahnmuseum/index.md
Normal file
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
title: '38c3 Eisenbahnmuseum Lokschuppen Aumühle'
|
||||
date: 2024-10-31T09:00:00+01:00
|
||||
summary: |
|
||||
Im Eisenbahnmuseum Lokschuppen Aumühle hat der Verein Verkehrsamateure
|
||||
und Museumsbahn e. V. Fahrzeuge aus 150 Jahren Eisenbahngeschichte rund
|
||||
um Hamburg gesammelt und restauriert, u. a. mehrere Generationen von
|
||||
Hamburger S-Bahn-Zügen. Mit der Feldbahn geht\'s zu einer Rundfahrt über
|
||||
das Gelände und seine Exponate. Fachkundige, ehrenamtliche
|
||||
Vereinsmitglieder erklären an mehreren Stationen die Geschichte der
|
||||
Eisenbahnfahrzeuge, der Stellwerke und Sicherungstechnik, des Gleisbaus,
|
||||
und vieler weiterer Aspekte. Nach Möglichkeit zeigen wir alles in
|
||||
Funktion, zum selber Anfassen!
|
||||
---
|
||||
|
||||
Ihr fandet die Feldbahn auf dem Camp super? Ihr möchtet jetzt auch mal ausprobieren wie es ist eine Feldbahnlok zu fahren?
|
||||
|
||||
Ihr habt die Remote Stellwerk Experience gesehen und wollt nun auch mal
|
||||
selber Hand anlegen und an realen Stellwerksanlagen virtuelle Züge als
|
||||
Fahrdienstleiter\*in durch die Anlage schicken?
|
||||
|
||||
![Der Hof mit Feldbahn](lokschuppen_hof.jpeg)
|
||||
|
||||
![Das Stellwerk während der Remote Experience](lokschuppen_stellwerk.jpeg)
|
||||
|
||||
Im Eisenbahnmuseum Lokschuppen Aumühle hat der Verein Verkehrsamateure
|
||||
und Museumsbahn e. V. Fahrzeuge aus 150 Jahren Eisenbahngeschichte rund
|
||||
um Hamburg gesammelt und restauriert, u. a. mehrere Generationen von
|
||||
Hamburger S-Bahn-Zügen. Mit der Feldbahn geht\'s zu einer Rundfahrt über
|
||||
das Gelände und seine Exponate. Fachkundige, ehrenamtliche
|
||||
Vereinsmitglieder erklären an mehreren Stationen die Geschichte der
|
||||
Eisenbahnfahrzeuge, der Stellwerke und Sicherungstechnik, des Gleisbaus,
|
||||
und vieler weiterer Aspekte. Nach Möglichkeit zeigen wir alles in
|
||||
Funktion, zum selber Anfassen!
|
||||
|
||||
### Daten
|
||||
* Tag 2 (28.12.) **11:15 Uhr**
|
||||
* Dauer: 4 Stunden (mit An- und Abfahrt)
|
||||
* Kosten: Kostenlos, Spenden sehr willkommen!
|
||||
* Sprache: Deutsch und Englisch
|
||||
* Barrierefreiheit: bedingt gegeben. Der Weg von der S-Bahn zum Lokschuppen führt über einen Waldweg mit Höhenunterschied von ca. 15m, und auf dem Gelände ist der Untergrund teils sehr uneben. Das Innere der Fahrzeuge kann mit einem Fahrstuhl nicht erreicht werden; teilweise sind die Einstiege sehr steil und die Stufen sehr hoch.
|
||||
* Treffen am Hackertours-Desk: **11:15 Uhr**.
|
||||
* Alternativ könnt ihr auch direkt zur Location kommen. In diesem Fall sagt uns bitte per Mail an [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de) rechtzeitig Bescheid. Bitte seid **spätestens eine Stunde** nach der oben angegebenen Zeit an der Location. Wir treffen uns an der S-Bahn Aumühle.
|
||||
* Location: Am Mühlenteich, 21521 Aumühle;
|
||||
<https://www.vvm-museumsbahn.de/?id=305>
|
||||
* Kosten: Kostenlos, Spenden sehr willkommen!
|
||||
* Veranstalter: Verein Verkehrsamateure und Museumsbahn e. V. (gemeinnützig)
|
Before Width: | Height: | Size: 3.7 MiB After Width: | Height: | Size: 3.7 MiB |
Before Width: | Height: | Size: 3.4 MiB After Width: | Height: | Size: 3.4 MiB |
47
content/de/38c3/miwula/index.md
Normal file
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
title: '38c3 Miniatur Wunderland'
|
||||
date: 2024-10-31T09:00:00+01:00
|
||||
summary: |
|
||||
Das Miniatur Wunderland ist laut Guinness World Records die größte Modelleisenbahnanlage der Welt. Sie befindet sich in der historischen Speicherstadt in Hamburg und wird von der Miniatur Wunderland Hamburg GmbH betrieben. Es zählt zu den beliebtesten und meistbesuchten Sehenswürdigkeiten Deutschlands.
|
||||
|
||||
Auf den insgesamt ca. 1700 m² großen Modellflächen werden verschiedene Regionen der Welt als Modellbau dargestellt. Nach Betreiberangaben verfügen die Gleise im Maßstab 1:87 über eine Gesamtlänge von mehr als 16 Kilometern, auf denen rund 1200 digital gesteuerte Züge mit mehr als 12.000 Waggons verkehren. Die Anlage wurde mit rund 5300 Häusern und Brücken, mehr als 11.000 Fahrzeugen – wovon etwa 285 die Anlage eigenständig befahren – 52 Flugzeugen und circa 290.000 Figuren gestaltet. Lichttechnisch verfügt die Anlage über einen wiederkehrenden Tag-Nacht-Wechsel sowie über mehr als 500.000 verbaute LED-Lichter.
|
||||
---
|
||||
|
||||
Das Miniatur Wunderland ist laut Guinness World Records die größte Modelleisenbahnanlage der Welt. Sie befindet sich in der historischen Speicherstadt in Hamburg und wird von der Miniatur Wunderland Hamburg GmbH betrieben. Es zählt zu den beliebtesten und meistbesuchten Sehenswürdigkeiten Deutschlands.
|
||||
|
||||
![Viele Gleise](miwula-tracks.jpeg)
|
||||
|
||||
![Köhlbrandbrücke](miwula-bridge.jpeg)
|
||||
|
||||
Auf den insgesamt ca. 1700 m² großen Modellflächen werden verschiedene Regionen der Welt als Modellbau dargestellt. Nach Betreiberangaben verfügen die Gleise im Maßstab 1:87 über eine Gesamtlänge von mehr als 16 Kilometern, auf denen rund 1200 digital gesteuerte Züge mit mehr als 12.000 Waggons verkehren. Die Anlage wurde mit rund 5300 Häusern und Brücken, mehr als 11.000 Fahrzeugen – wovon etwa 285 die Anlage eigenständig befahren – 52 Flugzeugen und circa 290.000 Figuren gestaltet. Lichttechnisch verfügt die Anlage über einen wiederkehrenden Tag-Nacht-Wechsel sowie über mehr als 500.000 verbaute LED-Lichter. [Wikipedia](https://de.wikipedia.org/wiki/Miniatur_Wunderland)
|
||||
|
||||
## Tour und Besuch
|
||||
|
||||
Diese Mal haben wir zwei verschiedene Angebote für euch:
|
||||
|
||||
### Tour hinter den Kulissen
|
||||
|
||||
Am Tag 0, 26.12. (zweiter Weihnachtfeiertag) haben wir die [Backstage-Tour](https://www.miniatur-wunderland.de/besuchen/wunderland-vor-ort/fuehrungen/) buchen können; leider war das der einzige Slot, wo wir noch Touren exklusiv buchen konnten. In diesen Touren werdet ihr hinter der Anlage durch die Technik geführt, in Bereichen, die Besuchern normalerweise nicht zugänglich sind. Vor und nach der Tour könnt ihr die normalen Bereiche besuchen.
|
||||
|
||||
**Wichtig** Diese Tour ist nicht barrierefrei: der Raum hinter der Anlage ist einfach zu eng für Rollstühle, oder sogar Krücken, und es gibt Stufen und niedrige Durchgänge, die überwunden werden müssen. Ihr müsst auch durch Durchgänge passen, die bis zu 30cm schmal sind. Wenn ihr unter Platzangst leidet, ist diese Tour veilleicht nicht für euch geeignet. Kinder unter 12 Jahren müssen durch einen Erwachsenen begeleitet werden.
|
||||
|
||||
### Besuch des Miniatur Wunderlands ohne Tour
|
||||
An Tag 1, 2 und 3 haben wir Eintrittskarten für den Besuch reserviert, mit denen ihr ohne Wartezeit direkt reinkommt. An diesen Tagen hat das Miwula bis 01:00 Uhr morgens geöffnet, ihr habt also viel Zeit, euch wirklich alles anzuschauen. Wir empfehlen, min 3 Stunden zu reservieren.
|
||||
|
||||
## Daten
|
||||
* Touren:
|
||||
* Tag 0 (26.12.) Tour hinter den Kulissen **17.15 Uhr**. Dauer der Tour ca. 90 Minuten, das Miwula hat bis 21:00 Uhr geöffnet.
|
||||
* Tag 1 (27.12.) Besuch ohne Tour **18:15 Uhr**. Das Miwula hat bis 01:00 Uhr geöffnet.
|
||||
* Tag 2 (28.12.) Besuch ohne Tour **18:15 Uhr**. Das Miwula hat bis 01:00 Uhr geöffnet.
|
||||
* Tag 3 (29.12.) Besuch ohne Tour **18:15 Uhr**. Das Miwula hat bis 01:00 Uhr geöffnet.
|
||||
* Dauer: 6 Stunden
|
||||
* Sprache: Backstage-Tour ist auf Deutsch
|
||||
* Kosten:
|
||||
* 21€ Besuch ohne Tour
|
||||
* 40€ Tour hinter den Kulissen
|
||||
* Treffen am Hackertours-Desk: **wie oben angegeben**.
|
||||
* **Wichtig**
|
||||
* Die Backstage-Tour hat Einschränkungen, siehe oben.
|
||||
* Bitte lasst nach Möglichkeit Taschen, Rucksäcke etc. im Hotel oder an der Garderobe im CCH. Es gibt vor Ort Schließfächer, aber es ist nicht garantiert, dass genug Platz ist. Ihr dürft Taschen und Rucksäcke nicht mit hineinnehmen.
|
||||
* Location: Kehrwieder 21, rund 5 Minuten Fußweg von U Baumwall
|
||||
* Veranstalter: Miniatur Wunderland GmbH
|
BIN
content/de/38c3/miwula/miwula-bridge.jpeg
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
content/de/38c3/miwula/miwula-tracks.jpeg
Normal file
After Width: | Height: | Size: 84 KiB |
|
@ -1,11 +1,27 @@
|
|||
---
|
||||
title: 37c3 Hackertours (de)
|
||||
title: 38c3 Hackertours (de)
|
||||
menus:
|
||||
main:
|
||||
name: Home
|
||||
weight: 1
|
||||
params:
|
||||
headline: Willkommen bei den Hamburger Hackertours – euer Anbieter für Sightseeing für Technik-Enthusiasten!
|
||||
intro: |
|
||||
Zum Congress und zum Easterhegg organisiert der CCCHH Touren zu interessanten Orten in und um Hamburg. Hier findet ihr Informationen zu aktuellen und früheren Veranstaltungen!
|
||||
logowidth: 500
|
||||
logoheight: 500
|
||||
cascade:
|
||||
params:
|
||||
intro: Der CCCHH zeigt euch Hamburg
|
||||
---
|
||||
|
||||
## Willkommen zu den HHackertours – euer Anbieter für Sightseeing für Technik-Enthusiasten!
|
||||
## Willkommen zu den Hackertours – euer Anbieter für Sightseeing für Technik-Enthusiasten!
|
||||
|
||||
Was sind die Hackertours? Das Hamburger Team hat spannende Orte in Hamburg gefunden, die euch für ein paar Stunden aus den Katakomben entführen, und neue, interessante Dinge erfahren lassen. [Hier erklären wir euch, wie genau das funktioniert]({{< relref "posts/faq" >}})!
|
||||
|
||||
**[Alle Touren]({{< relref "tours" >}})** – **[Direkt zum Shop](https://hackertours.hamburg.ccc.de/hackertours/37c3/)**
|
||||
**[Alle Touren zum 38c3]({{< relref "38c3" >}})** – **[Direkt zum Shop](https://tickets.hamburg.ccc.de/hacker37c3/38c3/)**
|
||||
|
||||
|
||||
Hackertours-Desk: DECT 8687 "TOUR", +494057308308687, Foyer X an der großen Uhr
|
||||
|
||||
# News
|
||||
|
|
|
@ -6,8 +6,8 @@ summary: |
|
|||
---
|
||||
Wir haben nachgelegt!
|
||||
|
||||
* [Alter Elbtunnel]({{< relref "alter-elbtunnel" >}}) jetzt auch an Tag 2 um 15 Uhr und am Tag 3 um 18 Uhr
|
||||
* [MS Stubnitz kultur.raumschiff]({{< relref "chaostrawler" >}}) an Tag 2 um 16 Uhr
|
||||
* [Energiebunker Wilhelmsburg]({{< relref "energiebunker" >}}) an Tag 3 um 15:00 (englisch) und 16:15 Uhr (deutsch)
|
||||
* [Alter Elbtunnel]({{< relref "37c3/alter-elbtunnel" >}}) jetzt auch an Tag 2 um 15 Uhr und am Tag 3 um 18 Uhr
|
||||
* [MS Stubnitz kultur.raumschiff]({{< relref "37c3/chaostrawler" >}}) an Tag 2 um 16 Uhr
|
||||
* [Energiebunker Wilhelmsburg]({{< relref "37c3/energiebunker" >}}) an Tag 3 um 15:00 (englisch) und 16:15 Uhr (deutsch)
|
||||
|
||||
Noch sind Plätze zu haben! Und schreibt euch gerne in die Wartelisten ein, Menschen ändern manchmal ihre Pläne und geben ihre gebuchten Plätze zurück. Sobald etwas frei wird, gehen die Plätze an die Menschen auf den Wartelisten!
|
||||
|
|
26
content/de/posts/2023-12-25-payment-waiting-list.md
Normal file
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
title: 'Bar-Zahlung und Restplätze'
|
||||
date: 2023-12-25T09:00:00+01:00
|
||||
summary: |
|
||||
tl;dr: bitte zahlt euere Tickets am Hackertours-Desk. Restplätze vergeben wir zum Start der jeweiligen Tour.
|
||||
---
|
||||
|
||||
**tl;dr:** bitte zahlt euere Tickets am Hackertours-Desk. Restplätze vergeben wir zum Start der jeweiligen Tour.
|
||||
|
||||
## Barzahlung: bis spätestens zum Start der Tour
|
||||
Wenn ihr **Barzahlung** ausgewählt habt, dann kommt bitte **spätestens bis zum Start der Tour** an den Hackertours-Desk und bezahlt eure Tickets. **Sonst vergeben wir die Plätze an andere.**
|
||||
|
||||
Wenn ihr schon überwiesen habt, kommt einfach zum angegebenen Startzeitpunkt zum Hackertours-Desk.
|
||||
|
||||
## Restplätze am Start der Tour
|
||||
|
||||
Zur Startzeit der Tour checken wir, das alle da sind und bezahlt haben. Wenn nach diesem Check noch Plätze frei sind, vergeben wir die direkt vor Ort. Wenn ihr also noch einen Restplatz ergattern möchtet, dann kommt rechtzeitig an den Hackertours-Desk. Bitte bringt passendes Bargeld für die Bezahlung mit!
|
||||
|
||||
## Öffnungszeiten Hackertours-Desk
|
||||
|
||||
Der Hackertours-Desk ist geöffnet:
|
||||
* Tag 1: 12:00–18:00
|
||||
* Tag 2: 10:00-16:00
|
||||
* Tag 3: 10:00–18:00
|
||||
|
||||
Ihr findet uns im Foyer X bei der großen Uhr, neben dem Infodesk und dem Vereinstisch.
|
12
content/de/posts/2023-12-26-escorts.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: 'Hackertours-Escorts: Kennt ihr euch in Hamburg aus?'
|
||||
date: 2023-12-26T09:00:00+01:00
|
||||
summary: |
|
||||
tl;dr: Helft der Tourgruppe, vom CCH zur Tour-Location zu kommen.
|
||||
---
|
||||
|
||||
Kennt ihr euch in Hamburg aus? Dann brauchen wir eure Hilfe!
|
||||
|
||||
Damit die Tourgruppe erfolgreich an der Location ankommt, sollten ein bis zwei Personen aus der Gruppe den Weg weisen. Wenn ihr euch in Hamburg auskennt und auch mit U- und S-Bahn firm seid, könnt ihr zusammen mit den anderen Teilnehmenden zur Location fahren, und helfen, dass alle ein passendes HVV-Ticket haben. Wir haben für euch einen Laufzettel mit allen wichtigen Informationen vorbereitet: Öffi-Verbindung, Zieladresse und Wegbeschreibung, Kontaktdaten des Veranstalters, Gruppengröße, etc.
|
||||
|
||||
Ist das was für euch? Dann meldet euch bitte 15 Minuten vor dem Treffzeitpunkt am Hackertours-Desk und wir weisen euch ein!
|
8
content/de/posts/2023-12-28-open-seats.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: 'Kurzfristige Restplätze'
|
||||
date: 2023-12-28T09:00:00+01:00
|
||||
summary: |
|
||||
Wir haben durch kurzfristige Stornierungen bei fast allen Touren ein oder zwei Plätze frei, kommt zum Hackertours-Desk zur Startzeit.
|
||||
---
|
||||
|
||||
Leider müssen Leute immer wieder kurzfristig eine Tour-Teilnahme absagen, deshalb sind häufig ein oder zwei Plätze auf den Touren frei. Wenn ihr noch spontan mitkommen wollt, dann kommt zur Startzeit der Tour einfach an den Hackertours-Desk, und wir nehmen euch in die Gruppe auf.
|
8
content/de/posts/2023-12-31-thanks.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: 'So long and thanks for all the fish!'
|
||||
date: 2023-12-31T09:00:00+01:00
|
||||
---
|
||||
|
||||
Danke, das ihr mit Hackertours gereist seid! Wir hoffen, euch habe die Touren gefallen, und wir freuen uns darauf, zum 38c3 neue Touren anbieten zu können!
|
||||
|
||||
Wenn ihr in Kontakt bleiben möchtet, folgt uns auf Mastodon [@hackertours@chaos.social](https://chaos.social/@hackertours)!
|
8
content/de/posts/2024-10-01-coming-up.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: 'Freut euch auf die Touren beim 38c3!'
|
||||
date: 2024-10-31T09:00:00+01:00
|
||||
---
|
||||
|
||||
Wir bereiten auch für den 38c3 Touren vor. Sobald wir die Details ausgearbeitet haben, erfahrt ihr hier mehr.
|
||||
|
||||
Um nah am Puls zu sein, folgt uns auf Mastodon [@hackertours@chaos.social](https://chaos.social/@hackertours)!
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
title: News
|
||||
weight: 1
|
||||
weight: 2
|
||||
menus: main
|
||||
|
||||
---
|
||||
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
+++
|
||||
title = 'Die Hackertours für den 37c3 – FAQ'
|
||||
date = 2023-12-07T18:46:19+01:00
|
||||
+++
|
||||
---
|
||||
title: 'Die Hackertours für den 38c3 – FAQ'
|
||||
date: 2023-12-07T18:46:19+01:00
|
||||
menus:
|
||||
main:
|
||||
name: FAQ
|
||||
---
|
||||
|
||||
Was sind die Hackertours? Das Hamburger Team hat spannende Orte in Hamburg gefunden, die euch für ein paar Stunden aus den Katakomben entführen, und neue, spannende Dinge erfahren lassen. Hier erklären wir euch, wie genau das funktioniert!
|
||||
<!--more-->
|
||||
|
@ -12,8 +15,8 @@ Was sind die Hackertours? Das Hamburger Team hat spannende Orte in Hamburg gefun
|
|||
Ihr braucht Unterstützung? Kontaktiert uns!
|
||||
|
||||
* Per Mail: [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de)
|
||||
* Per DECT: 8687 "TOUR"
|
||||
* Vor Ort: am Hackertours-Desk, Ort kommt noch
|
||||
* Per DECT: 8687 "TOUR" oder +494057308308687
|
||||
* Vor Ort: am Hackertours-Desk, Foyer X an der großen Uhr
|
||||
|
||||
Wir informieren euch über alle Neuigkeiten hier auf der Webseite und auf Mastodon [@hackertours@chaos.social](https://chaos.social/@hackertours).
|
||||
|
||||
|
@ -23,29 +26,25 @@ Eine Gruppe von Menschen rund um den CCCHH hat in den vergangenen Wochen keine M
|
|||
|
||||
### Welche Touren gibt es?
|
||||
|
||||
**[Alle Touren]({{< relref "tours" >}})** – **[Direkt zum Shop](https://hackertours.hamburg.ccc.de/hackertours/37c3/)**
|
||||
**[Alle Touren zum 38c3]({{< relref "38c3" >}})** – **[Direkt zum Shop](https://tickets.hamburg.ccc.de/hacker37c3/38c3/)**
|
||||
|
||||
### Brauche ich ein Ticket?
|
||||
|
||||
Ja, unbedingt. Die Touren haben nur begrenzte Kapazität, und damit wir das gut planen und durchführen können, braucht ihr zur Teilnahme ein Ticket.
|
||||
|
||||
Bitte klickt euch das gewünschte **[Ticket im Ticketshop](https://hackertours.hamburg.ccc.de/hackertours/37c3/)** bzw. setzt euch dort auf die Warteliste!
|
||||
Bitte klickt euch das gewünschte **[Ticket im Ticketshop](https://tickets.hamburg.ccc.de/hacker37c3/38c3/)** bzw. setzt euch dort auf die Warteliste!
|
||||
|
||||
### Wann treffen wir uns und wo?
|
||||
|
||||
**Start und Ende** aller Touren ist im CCH. **Kommt pünktlich zur angegebenen Zeit** zum Hackertours-Desk, damit wir die Tickets checken können, und ggf. freibleibende Plätze von der Warteliste berücksichtigen können! **Wenn ihr nicht pünktlich seid, geben wir euer Ticket weiter.**
|
||||
|
||||
Dies ist auch **die letzte Chance, euer Ticket zu bezahlen**. Wenn das Ticket nicht spätestens zum angegebenen Zeitpunkt bezahlt ist, versuchen wir es an andere zu vermitteln.
|
||||
|
||||
Unsere Hackertours Escorts organisieren die Fahrt mit der Gruppe zur Location (siehe unten).
|
||||
|
||||
Alternativ könnt ihr auch **selbst zur Location fahren. In diesem Fall sagt uns unbedingt bis spätestens zum Startzeitpunkt der Tour Bescheid**, damit wir den Hackertours-Escorts eure Namen mitgeben können. Wir gehen sonst davon aus, das ihr nicht an der Tour teilnehmen wollt, und versuchen euren Platz anderweitig zu vergeben! Außerdem müsst ihr in diesem Falle schon bezahlt haben. Falls ihr das nicht vorab per Überweisung gemacht habt, kommt rechtzeitig vorher zum Hackertours-Stand und bringt das Geld passend in bar mit. Die Ankunftszeiten vor Ort findet ihr in den [Tourbeschreibungen]({{< relref "tours" >}}).
|
||||
|
||||
Zum **Startzeitpunkt der Tour** vergeben wir nicht bezahlten Plätze an alle, die **zu diesem Zeitpunk am Desk stehen** und mit wollen, sofern Plätze vorhanden sind.
|
||||
Alternativ könnt ihr auch **selbst zur Location fahren. In diesem Fall sagt uns unbedingt bis spätestens zum Startzeitpunkt der Tour Bescheid**, damit wir den Hackertours-Escorts eure Namen mitgeben können. Wir gehen sonst davon aus, das ihr nicht an der Tour teilnehmen wollt, und versuchen euren Platz anderweitig zu vergeben! Außerdem müsst ihr in diesem Falle schon bezahlt haben. Falls ihr das nicht vorab per Überweisung gemacht habt, kommt rechtzeitig vorher zum Hackertours-Stand und bringt das Geld passend in bar mit. Die Ankunftszeiten vor Ort findet ihr in den [Tourbeschreibungen]({{< relref "38c3" >}}).
|
||||
|
||||
### Wie komme ich zum Ort der Tour?
|
||||
|
||||
Das Tour-Ticket ist **kein** Nahverkehrsticket. Aber keine Sorge, ein Hackertours-Escort hilft euch, den Dschungel des hamburger Nahverkers unbeschadet zu durchdringen. Wir sind grundsätzlich mit öffentlichen Verkehrsmitteln unterwegs, für die ihr ein Ticket braucht. Wenn ihr schon ein Deutschlandticket habt, oder eh ein (Mehr-)Tagesticket für die Fahrt vom und zum CCH habt, seid ihr fein raus. Für alle anderen organisieren wir den gemeinsamen Fahrkarten-Kauf, z. B. durch geschicktes Zusammenstellen von Fünfer-Gruppen für Gruppentickets. Es kann nicht schaden, 10-15 Euro Bargeld in Münzen dabei zu haben, um die Fahrscheine zu lösen.
|
||||
Das Tour-Ticket ist **kein** Nahverkehrsticket. Aber keine Sorge, ein Hackertours-Escort hilft euch, den Dschungel des Hamburger Nahverkehrs unbeschadet zu durchdringen. Wir sind grundsätzlich mit öffentlichen Verkehrsmitteln unterwegs, für die ihr ein Ticket braucht. Wenn ihr schon ein Deutschlandticket habt, oder eh ein (Mehr-)Tagesticket für die Fahrt vom und zum CCH habt, seid ihr fein raus. Für alle anderen organisieren wir den gemeinsamen Fahrkarten-Kauf, z. B. durch geschicktes Zusammenstellen von Fünfer-Gruppen für Gruppentickets. Es kann nicht schaden, 10-15 Euro Bargeld in Münzen dabei zu haben, um die Fahrscheine zu lösen.
|
||||
|
||||
### Ich brauche Unterstützung, um zum Ort der Tour zu kommen
|
||||
|
||||
|
@ -53,37 +52,37 @@ Wenn ihr Einschränkungen oder Behinderungen habt, die es euch schwer machen, de
|
|||
|
||||
### Ist die Tour barrierefrei?
|
||||
|
||||
Bitte schaut in die Beschreibung der jeweiligen [Touren]({{< relref "tours" >}}). Leider sind viele historische Orte nicht wirklich barrierefrei. Wenn ihr spezifische Fragen habt, wendet euch gerne an [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de).
|
||||
Bitte schaut in die Beschreibung der jeweiligen [Touren]({{< relref "38c3" >}}). Leider sind viele historische Orte nicht wirklich barrierefrei. Wenn ihr spezifische Fragen habt, wendet euch gerne an [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de).
|
||||
|
||||
### Ich spreche kein Deutsch. Kann ich trotzdem teilnehmen?
|
||||
|
||||
Einige Touren werden (auch) in Englisch angeboten, bitte schaut in die Beschreibung der jeweiligen [Touren]({{< relref "tours" >}}). Aber selbst wenn die Tour hauptsächlich in Deutsch gegeben wird, sind viele Teilnehmenden bereit, an Ort und Stelle zu übersetzen.
|
||||
Einige Touren werden (auch) in Englisch angeboten, bitte schaut in die Beschreibung der jeweiligen [Touren]({{< relref "38c3" >}}). Aber selbst wenn die Tour hauptsächlich in Deutsch gegeben wird, sind viele Teilnehmenden bereit, an Ort und Stelle zu übersetzen.
|
||||
|
||||
### Wie kann ich bezahlen? Auch direkt vor Ort?
|
||||
### Wie kann ich bezahlen?
|
||||
|
||||
Für die Touren wird teilweise ein Eintrittsgeld verlangt. Ihr müsst euer Ticket rechtzeitig im Shop (Banküberweisung) bezahlen; damit das sicher funktioniert, müsst ihr **spätestens am 21.12. überwiesen haben**. Alternativ könnt ihr euer Ticket auch am **Hackertours-Desk in Bar** bezahlen. Der Desk ist an folgenden Zeiten besetzt, um eure Zahlung entgegenzunehmen:
|
||||
Einige der Touren verlangen ein Eintrittsgeld. Um die Durchführung der Touren so einfach wie möglich zu machen, bezahlt ihr direkt beim Ticketkauf an die Hackertours, die Hackertours kümmern sich dann darum, das die Teilnehmenden direkt die Tour starten können (ohne z. B. erst noch in einer Kassenschlage stehen zu müssen).
|
||||
|
||||
* Tag 1: 13 bis 17 Uhr
|
||||
* Tag 2: 10 bis 18 Uhr
|
||||
* Tag 3: 10 bis 16 Uhr
|
||||
Damit das sicher funktioniert, müsst ihr **spätestens am 23.12. überwiesen haben**. Wenn ihr Tickets bucht, zeigt euch das System an, wie viele Tage ihr Zeit habt, zu bezahlen. Wenn die Tickets bis zu dieser Frist nicht bezahlt sind, geben wir sie zurück in den Verkauf.
|
||||
|
||||
Wenn ihr euer Ticket im [Ticket Shop](https://hackertours.hamburg.ccc.de/hackertours/37c3/) kauft, erhaltet ihr eine Email mit den Details zur Überweisung: Kontonummer und ein Verwendungszweck, der eure Zahlung eurem Ticket zuordnet. Bitte folgt den Anweisungen in dieser Email. Wenn ihr aus irgendeinem Grund die Email nicht habt, aber euren Code kennt, dann könnt ihr diese Daten verwenden:
|
||||
Wenn ihr euer Ticket im [Ticket Shop](https://tickets.hamburg.ccc.de/hacker37c3/38c3/) kauft, erhaltet ihr eine Email mit den Details zur Überweisung: Kontonummer und ein Verwendungszweck, der eure Zahlung eurem Ticket zuordnet. Bitte folgt den Anweisungen in dieser Email. Wenn ihr aus irgendeinem Grund die Email nicht habt, aber euren Code kennt, dann könnt ihr diese Daten verwenden:
|
||||
* Verwendungszweck: Der Code für euer Ticket
|
||||
* IBAN: DE69 8306 5408 0105 2955 05
|
||||
* BIC: GENODEF1SLR
|
||||
* Name der Bank: VR-BANK ABG-LAND / SKATBANK
|
||||
|
||||
Wenn ihr nicht per Überweisung zahlen könnt, dann bringt bitte den exakten Betrag vor eurer Tour zum Hackertours-Desk mit.
|
||||
Wenn ihr nicht per Überweisung zahlen könnt, kontaktiert uns bitte, wir versuchen dann eine Lösung zu finden.
|
||||
|
||||
### Schon ausverkauft! Kann ich noch mit?
|
||||
|
||||
Für alle Touren gibt es eine **Warteliste**. Wenn eure Lieblingstour schon ausgebucht ist, gibt es trotzdem eine Chance, über die Warteliste doch noch zum Zuge zu kommen. Wir vergeben Plätze in der Reihenfolge der Warteliste, sobald sie frei werden. Das machen wir bis ca. 2 Stunden vor Tourbeginn.
|
||||
Für alle Touren gibt es eine **Warteliste**. Wenn eure Lieblingstour schon ausgebucht ist, gibt es trotzdem eine Chance, über die Warteliste doch noch zum Zuge zu kommen. Wir vergeben Plätze in der Reihenfolge der Warteliste, sobald sie frei werden. Das machen wir bis ca. 24 Stunden vor Tourbeginn.
|
||||
|
||||
**Restplätze vergeben wir zum Tourstart vor Ort am Hackertours-Desk**. Ihr könnt also gerne zum Startzeitpunkt vorbeischauen und schauen, ob kurzfristig noch Plätze frei geworden sind.
|
||||
|
||||
### Ich kann doch nicht :-(
|
||||
|
||||
Wenn ihr nicht teilnehmen könnt, dann gebt bitte euer Ticket zurück, damit andere die Chance haben, teilzunehmen! Das geht am einfachsten über [den Ticketshop](https://hackertours.hamburg.ccc.de/hackertours/37c3/), oder per Mail an [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de). Danke!
|
||||
**Wir können kostenpflichtige Tickets nicht stornieren und erstatten.** Wenn ihr an einer kostenpflichtigen Tour nicht teilnehmen könnt, versucht bitte selbst, eine Person zu finden, die stattdessen die Tour besuchen möchte. Wenn das nicht möglich ist, kontaktiert uns bitte per Mail an [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de).
|
||||
|
||||
**Bitte storniert kostenfreie Tickets so früh wie möglich.** Wenn ihr wisst, dass ihr an einer kostenfreien Tour nicht werdet teilnehmen können, storniert euer Ticket bitte so früh wie mglich im Shop, damit andere die Chance haben, euren Platz einzunehmen.
|
||||
|
||||
### Hilfe, das klappt alles nicht!
|
||||
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
---
|
||||
title: Touren
|
||||
#listsort: true
|
||||
weight: 10
|
||||
#tables: true
|
||||
|
||||
---
|
||||
|
||||
Diese Touren bieten wir zum 37c3 an.
|
||||
|
||||
|Zeit| Tag 1 (27.12.) | Tag 2 (28.12.) | Tag 3 (29.12.) |
|
||||
|----|----------------|----------------|----------------|
|
||||
| 10 | – | 10:45 [U-434]({{< relref "u-434" >}}) | 10:45 [U-434]({{< relref "u-434" >}}) |
|
||||
| 11 | – | 11:15 [Eisenbahnmuseum]({{< relref "eisenbahnmuseum" >}}) | – |
|
||||
| 12 | 12:30 [electrum]({{< relref "electrum" >}}) | 12:40 [Cap San Diego]({{< relref "cap-san-diego" >}}) | 12:40 [Cap San Diego]({{< relref "cap-san-diego" >}}) |
|
||||
| 13 | – | 13:40 [Alter Elbtunnel]({{< relref "alter-elbtunnel" >}}) | 13:20 [Energiebunker]({{< relref "energiebunker" >}}) |
|
||||
| 14 | 14:40 [Alter Elbtunnel]({{< relref "alter-elbtunnel" >}}) | 14:45 [MS Stubnitz]({{< relref "chaostrawler" >}}) | 14:35 [Energiebunker]({{< relref "energiebunker" >}}) |
|
||||
| | | | 14:40 [Alter Elbtunnel]({{< relref "alter-elbtunnel" >}})|
|
||||
| 15 | 15:45 [U-434]({{< relref "u-434" >}}) | 15:40 [Alter Elbtunnel]({{< relref "alter-elbtunnel" >}}) | |
|
||||
| 16 | 16:40 [Alter Elbtunnel]({{< relref "alter-elbtunnel" >}}) | – | 16:40 [Alter Elbtunnel]({{< relref "alter-elbtunnel" >}}) |
|
||||
|
||||
Wir haben keine Touren an Tag 4 (30.12.).
|
25
content/en/37c3/_index.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
title: 37c3 Tours
|
||||
#listsort: true
|
||||
weight: 10
|
||||
#tables: true
|
||||
|
||||
---
|
||||
|
||||
These are the tours we did offer for 37c3 in 2023.
|
||||
|
||||
|
||||
| Time | Day 1 (27.12.) | Day 2 (28.12.) | Day 3 (29.12.) |
|
||||
|-------|----------------|----------------|----------------|
|
||||
| 10 | – | 10:45 [U-434]({{< relref "37c3/u-434" >}}) | – |
|
||||
| 11 | – | 11:15 [Train Museum]({{< relref "37c3/eisenbahnmuseum" >}}) | 11:05 [U-434]({{< relref "37c3/u-434" >}}) |
|
||||
| 12 | 12:30 [electrum]({{< relref "37c3/electrum" >}}) | 12:40 [Cap San Diego]({{< relref "37c3/cap-san-diego" >}}) | 12:40 [Cap San Diego]({{< relref "37c3/cap-san-diego" >}}) |
|
||||
| 13 | – | 13:40 [Old Elbe Tunnel]({{< relref "37c3/alter-elbtunnel" >}}) | 13:20 [Energy Bunker]({{< relref "37c3/energiebunker" >}}) de |
|
||||
| 14 | 14:40 [Old Elbe Tunnel]({{< relref "37c3/alter-elbtunnel" >}}) | 14:45 [MS Stubnitz]({{< relref "37c3/chaostrawler" >}}) | 14:35 [Energy Bunker]({{< relref "37c3/energiebunker" >}}) de |
|
||||
| | | | 14:40 [Old Elbe Tunnel]({{< relref "37c3/alter-elbtunnel" >}})|
|
||||
| 15 | 15:45 [U-434]({{< relref "37c3/u-434" >}}) | 15:40 [Old Elbe Tunnel]({{< relref "37c3/alter-elbtunnel" >}}) | |
|
||||
| 16 | 16:40 [Old Elbe Tunnel]({{< relref "37c3/alter-elbtunnel" >}}) | – | 16:40 [Old Elbe Tunnel]({{< relref "37c3/alter-elbtunnel" >}}) |
|
||||
| 17 | | | | |
|
||||
| 18 | | 18:00 [Hansaplatz]({{< relref "37c3/hansaplatz" >}})| | |
|
||||
|
||||
There are no tours on day 4 (30.12.).
|
BIN
content/en/37c3/alter-elbtunnel/01_Andreas_Schmidt-Wiethoff.jpeg
Normal file
After Width: | Height: | Size: 313 KiB |
BIN
content/en/37c3/alter-elbtunnel/02_Andreas_Schmidt-Wiethoff.jpeg
Normal file
After Width: | Height: | Size: 453 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Old Elbe Tunnel'
|
||||
title: '37c3 Old Elbe Tunnel'
|
||||
summary: |
|
||||
Look behind the curtain: the St. Pauli Elbtunnel connects the St. Pauli neighborhood with Steinwerder island. It was built between 1907 and 1911, and was one of the first road tunnels in the world. On this tour, Thomas Heidborn takes you to the cupola of the head building on the St. Pauli side and mentally back to the time where it all began.
|
||||
---
|
Before Width: | Height: | Size: 222 KiB After Width: | Height: | Size: 222 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Cap San Diego'
|
||||
title: '37c3 Cap San Diego'
|
||||
summary: |
|
||||
Cap San Diego is a general cargo ship built in 1961 that still is seaworthy and offers excursions. On our tour we will see the bridge as well as the engine room. An exhibition takes us back in time to worldwide shipping before the introduction of containers.
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Motorschiff Stubnitz'
|
||||
title: '37c3 Motorschiff Stubnitz'
|
||||
summary: |
|
||||
Would you like to see where the rc3 teleshop studio actually stood? Or what a ship of the GDR deep-sea fishing fleet looks like from the inside? And what the technology looks like that still keeps the ship afloat and visible in Hamburg today as a non-profit, participatory cultural spaceship? Come along for a tour on the motor vessel Stubnitz!
|
||||
---
|
||||
|
@ -22,7 +22,7 @@ In general, we are currently in a phase where we urgently need to raise third-pa
|
|||
* Language: Deutsch, Englisch eingeschränkt
|
||||
* Cost: 15€
|
||||
* Meet at Hackertours Desk: **14:45 hours**
|
||||
* Alternatively, you can come to the location directly. In this case, please let us know by writing us at [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de). Please arrive at the location **no later than one hour** after the time given above. We will be meeting at ship at MS Stubnitz, Kirchenpauerstraße 26.
|
||||
* Alternatively, you can come to the location directly. In this case, please let us know by writing us at [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de). Please arrive at the location **no later than one hour** after the time given above. We will be meeting at ship at MS Stubnitz,Kirchenpauerkai 29.
|
||||
* Location: [MS Stubnitz](https://www.stubnitz.com), U+S Elbbrücken
|
||||
* Operator: Motorschiff Stubnitz e.V.
|
||||
* Accessibilty: not accessable at all, steep gangways and stairs, uneven ground, etc.
|
After Width: | Height: | Size: 229 KiB |
After Width: | Height: | Size: 234 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Train Museum Loco Shed Aumühle'
|
||||
title: '37c3 Train Museum Loco Shed Aumühle'
|
||||
summary: |
|
||||
At the Train Museum Loco Shed Aumühle the Verein Verkehrsamateure und Museumsbahn e. V. has collected and restored trains from 150 years of railroad history, among them multiple generations of Hamburg rapid transit trains. Using the Field Train, we take a tour around the grounds of the museum at its exhibits. Competent volunteer members explain the history of the moving stock, the signal tours and safety equipment, track construction and many other aspects. Where possible, everthing is in operation and can be touched!
|
||||
---
|
BIN
content/en/37c3/eisenbahnmuseum/lokschuppen_hof.jpeg
Normal file
After Width: | Height: | Size: 3.7 MiB |
BIN
content/en/37c3/eisenbahnmuseum/lokschuppen_stellwerk.jpeg
Normal file
After Width: | Height: | Size: 3.4 MiB |
Before Width: | Height: | Size: 303 KiB After Width: | Height: | Size: 303 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Electrum - The Museum of Electricity'
|
||||
title: '37c3 Electrum - The Museum of Electricity'
|
||||
summary: |
|
||||
The electrum is Hamburgs Museum of Electricity and Technology. Nothing works without electricity—for 130 years, electricity is part of our daily lives. You'll find around one thousands technical devices from all ages in electrum, Hamburgs museum of electricity in Harburgs inner harbour.
|
||||
---
|
Before Width: | Height: | Size: 669 KiB After Width: | Height: | Size: 669 KiB |
Before Width: | Height: | Size: 250 KiB After Width: | Height: | Size: 250 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Energy Bunker Wilhelmsburg'
|
||||
title: '37c3 Energy Bunker Wilhelmsburg'
|
||||
summary: |
|
||||
A beacon of the energy transition: For far too long, the old anti-aircraft bunker in Wilhelmsburg was an architectural eyesore. Today, the former wartime building is a globally unique example of the innovative use of renewable energy and a pioneer for other regional power plants around the world. The tour of the bunker shows the development from a wartime building to an innovative lighthouse project for the energy transition. Afterwards, you can enjoy the incomparable panoramic view over the city at Café vju.
|
||||
---
|
23
content/en/37c3/hansaplatz/index.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
title: '37c3 AI Surveillance at Hansaplatz'
|
||||
summary: |
|
||||
Hansaplatz, near Hamburg Central Station, is the AI surveillance laboratory of the city. The Hamburg Police is experimenting with behavior recognition. Using a Fraunhofer Institute stick figure AI, passers-by were "digitally skinned" and analyzed. During this surveillance walk, we take a closer look at this project and demand the city stop this surveillance.
|
||||
|
||||
---
|
||||
|
||||
Hansaplatz, near Hamburg Central Station, is the AI surveillance laboratory of the city. The Hamburg Police is experimenting with behavior recognition. Using a Fraunhofer Institute stick figure AI, passers-by were "digitally skinned" and analyzed. During this surveillance walk, we take a closer look at this project and demand the city stop this surveillance.
|
||||
|
||||
![](https://pad.hamburg.ccc.de/uploads/179c2b22-24c1-48a6-a00c-e8cd9835e8dc.png)
|
||||
|
||||
This event is a registered parade ("demonstration"). The police have been asked to visibly take the cameras out of operation for the duration of the event. The police state that they will comply with the legal requirements.
|
||||
|
||||
## Details
|
||||
* Day 2 (28.12.) **18:00 hours**
|
||||
* Duration: 1,5 hours
|
||||
* Cost: free of charge (**no ticket necessary**)
|
||||
* Language: German
|
||||
* Accessibility: limited. We recommend to travel to Hansaplatz directly and with enough spare time, since the elevators at Dammtor and Hauptbahnhof habe limited capacity.
|
||||
* Meet at the Hackertours Desk: **18:00 hours**.
|
||||
* Alternatively, you can come to the location directly. We are meeting at Heidi-Kabel-Platz at 18:15, directly at the central station (Hauptbahnhof), then we will be walking over to Hansaplatz at 18:30.
|
||||
* Location: Hansaplatz
|
||||
* Operator: CCC Hansestadt Hamburg e.V.
|
Before Width: | Height: | Size: 336 KiB After Width: | Height: | Size: 336 KiB |
Before Width: | Height: | Size: 371 KiB After Width: | Height: | Size: 371 KiB |
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'U-Boat Museum Hamburg U-434'
|
||||
title: '37c3 U-Boat Museum Hamburg U-434'
|
||||
summary: |
|
||||
A technical adventure awaits you, where you can descend into one of the largest non-nuclear hunting and espionage submarines of its time. Our guides will not only give you a tour of the submarine with great background information, but also an exclusive tour of the command center.
|
||||
---
|
||||
|
@ -19,7 +19,7 @@ For this reason, the tango would probably not have been an easy target for subma
|
|||
* Days:
|
||||
* Tag 1 (27.12.) **15:45 hours**
|
||||
* Tag 2 (28.12.) **10:45 hours**
|
||||
* Tag 3 (29.12.) **10:45 hours**
|
||||
* Tag 3 (29.12.) **11:05 hours**
|
||||
* Duration: 45 minutes
|
||||
* Language: German and English
|
||||
* Cost: 13€
|
19
content/en/38c3/_index.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
title: 38c3 Tours
|
||||
#listsort: true
|
||||
weight: 10
|
||||
#tables: true
|
||||
menus:
|
||||
main:
|
||||
name: Tours
|
||||
---
|
||||
|
||||
These are the tours on offer for 38c3.
|
||||
|
||||
|
||||
| Time | Day 1 (27.12.) | Day 2 (28.12.) | Day 3 (29.12.) |
|
||||
|-------|----------------|----------------|----------------|
|
||||
| tbd | | | | |
|
||||
|
||||
|
||||
There are no tours on day 4 (30.12.).
|
BIN
content/en/38c3/alter-elbtunnel/01_Andreas_Schmidt-Wiethoff.jpeg
Normal file
After Width: | Height: | Size: 313 KiB |
BIN
content/en/38c3/alter-elbtunnel/02_Andreas_Schmidt-Wiethoff.jpeg
Normal file
After Width: | Height: | Size: 453 KiB |
35
content/en/38c3/alter-elbtunnel/index.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
title: '38c3 Old Elbe Tunnel'
|
||||
date: 2024-10-31T09:00:00+01:00
|
||||
summary: |
|
||||
Look behind the curtain: the St. Pauli Elbtunnel connects the St. Pauli neighborhood with Steinwerder island. It was built between 1907 and 1911, and was one of the first road tunnels in the world. On this tour, Thomas Heidborn takes you to the cupola of the head building on the St. Pauli side and mentally back to the time where it all began.
|
||||
---
|
||||
|
||||
## ”Down under”—the Old Elbe Tunnel
|
||||
The St. Pauli Elbtunnel connects the St. Pauli neighborhood with Steinwerder island. It was built between 1907 and 1911, and was one of the first road tunnels in the world. Today, it is a tourist attraction, but also an important cornerstone for mobility in the city. The appearance, the construction of the elevators to take whole horse carriages, the neo gothic design, simply everything about this award-winning building is testament to the progress of technology and infrastructure of its time. Technology nerds experience the Old Elbe Tunnel as a witness of engineering art and the pursuit of innovation of this time with all their senses.
|
||||
|
||||
![The evelator building on the north bank ©Andreas Schmidt-Wiethoff](./01_Andreas_Schmidt-Wiethoff.jpeg)
|
||||
|
||||
![The tunnel ©Andreas Schmidt-Wiethoff](./02_Andreas_Schmidt-Wiethoff.jpeg)
|
||||
|
||||
## So far, so good
|
||||
|
||||
On this tour, Thomas Heidborn takes you to the cupola of the head building on the St. Pauli side and mentally back to the time where it all began. He has been tunnel supervisor for more than 39 years and knows the details and the stories like the back of his hand. He will take you through the tunnel and direct your attention to many of the hidden details. In the show room, the small museum on the southern side, not usually open, you can see artifacts, historic machinery and a large professional model of the entire facility—of course with moving elevators. The tour completes with a view of the Elbe river across from St. Pauli, the Landungsbrücken jetties, and the City of Hamburg, which we like to call the most beautiful in the world.
|
||||
|
||||
|
||||
|
||||
## Details
|
||||
* Tours:
|
||||
* Day 1 (27.12.) **17:15 hours**
|
||||
* Day 2 (28.12.) **14:15 hours** in English
|
||||
* Day 2 (28.12.) **18:15 hours**
|
||||
* Day 3 (29.12.) **17:15 hours**
|
||||
* Duration: 1,5 Stunden
|
||||
* Language: German, one tour in English
|
||||
* Meet at Hackertours Desk: **at time given above**
|
||||
* Alternatively, you can come to the location directly. In this case, please let us know by writing us at [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de). Please arrive at the location **no later than one hour** after the time given above. We will be meeting at the passenger elevators at the head building.
|
||||
* Cost: 18€
|
||||
* Location: St. Pauli Elbtunnel - https://www.hamburg.de/alter-elbtunnel/, directly at Hamburger Landungsbrücken (U+S Landungsbrücken)
|
||||
* Operator: prima events GmbH
|
||||
* Important: The cupola can only be reached by stairs and is not accessible. You can take part in all other parts of the tour. The entire tour encompasses walking about 1,500m. Tunnel and exhibition room are mostly accessible.
|
||||
* Credit: © HPA, Andreas Schmidt-Wiethoff
|
29
content/en/38c3/chaostrawler/index.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
title: '38c3 Motorschiff Stubnitz'
|
||||
date: 2024-10-31T09:00:00+01:00
|
||||
summary: |
|
||||
Would you like to see where the rc3 teleshop studio actually stood? Or what a ship of the GDR deep-sea fishing fleet looks like from the inside? And what the technology looks like that still keeps the ship afloat and visible in Hamburg today as a non-profit, participatory cultural spaceship? Come along for a tour on the motor vessel Stubnitz!
|
||||
---
|
||||
|
||||
Would you like to see where the rc3 teleshop studio actually stood? Or what a ship of the GDR deep-sea fishing fleet looks like from the inside? And what the technology looks like that still keeps the ship afloat and visible in Hamburg today as a non-profit, participatory cultural spaceship? Come along for a tour on the motor vessel Stubnitz!
|
||||
|
||||
![Die MS Stubnitz an ihrem Liegeplatz in der Hafencity](stubnitz_hauke_dressler_liegeplatz_stubnitz_elbbrücken_web.jpg)
|
||||
![Die Brücke der MS Stubnitz](stubnitz_bruecke_workshop_hs_Karlsruhe.jpg)
|
||||
|
||||
The Stubnitz was built as a refrigerated ship in Stralsund in 1964, transformed into a mobile art and culture ship after reunification and has since been active as a floating cultural venue in over 20 European port cities. She has been a listed building since 2003 and is now one of the oldest technically authentic maritime vessels of this size that is still seaworthy. Concerts, parties, readings, performances and corporate events usually take place on board. As part of the 37c3, crew members will guide you through the otherwise closed parts of the 80-metre-long ship - including, for example, the engine room, radio room, "server room", chambers in almost original condition, cargo holds, bridge and, of course, the event rooms and the former studio of the teleshop... uh yeah.
|
||||
|
||||
If you can no longer click on a ticket, don't worry, there may be new contingents and it's best to get out your notebooks and sign up anyway: From 6 pm on day 2 (28.12.23) there will also be the "Cable Trash - 37c3 Congress-Edition" on board (18:00 tales from the depths (kilosecond presentations), ~20:00 live: die stadt der zukunft (bremen), ~22:00 djs (tba) ... open end: https://cabletrash.de/ct39.htm - there will also be time to roam around on the ship - unguided in the public areas.
|
||||
If you live in the Hamburg area and would like to help us in general with your skills and motivation, please contact us at: it-crew@stubnitz.com, we have a lot planned, a lot to offer and are looking for reinforcement in the team.
|
||||
|
||||
In general, we are currently in a phase where we urgently need to raise third-party funds and donations, so help us & spread the word. If you can't spare 15€ for a tour, let us know at the tour and we'll refund half of it.
|
||||
|
||||
## Details
|
||||
* Day 2 (28.12.) **14:45 hours**
|
||||
* Duration: 1 hour
|
||||
* Language: Deutsch, Englisch eingeschränkt
|
||||
* Cost: 15€
|
||||
* Meet at Hackertours Desk: **14:45 hours**
|
||||
* Alternatively, you can come to the location directly. In this case, please let us know by writing us at [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de). Please arrive at the location **no later than one hour** after the time given above. We will be meeting at ship at MS Stubnitz,Kirchenpauerkai 29.
|
||||
* Location: [MS Stubnitz](https://www.stubnitz.com), U+S Elbbrücken
|
||||
* Operator: Motorschiff Stubnitz e.V.
|
||||
* Accessibilty: not accessable at all, steep gangways and stairs, uneven ground, etc.
|
After Width: | Height: | Size: 229 KiB |
After Width: | Height: | Size: 234 KiB |
28
content/en/38c3/eisenbahnmuseum/index.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
---
|
||||
title: '38c3 Train Museum Loco Shed Aumühle'
|
||||
date: 2024-10-31T09:00:00+01:00
|
||||
summary: |
|
||||
At the Train Museum Loco Shed Aumühle the Verein Verkehrsamateure und Museumsbahn e. V. has collected and restored trains from 150 years of railroad history, among them multiple generations of Hamburg rapid transit trains. Using the Field Train, we take a tour around the grounds of the museum at its exhibits. Competent volunteer members explain the history of the moving stock, the signal tours and safety equipment, track construction and many other aspects. Where possible, everthing is in operation and can be touched!
|
||||
---
|
||||
|
||||
You enjoyed the field train at Camp? You would like to try it out, maybe even drive it yourself?
|
||||
|
||||
You watched the [Remote Stellwerk Experience](https://media.ccc.de/search/?q=Remote+Stellwerk) and would like to lay hands on the levers and to run trains as a signal master yourself?
|
||||
|
||||
![The courtyard](lokschuppen_hof.jpeg)
|
||||
|
||||
![The signal tower during Remote Experience](lokschuppen_stellwerk.jpeg)
|
||||
|
||||
At the Train Museum Loco Shed Aumühle the Verein Verkehrsamateure und Museumsbahn e. V. has collected and restored trains from 150 years of railroad history, among them multiple generations of Hamburg rapid transit trains. Using the Field Train, we take a tour around the grounds of the museum at its exhibits. Competent volunteer members explain the history of the moving stock, the signal tours and safety equipment, track construction and many other aspects. Where possible, everyything is in operation and can be touched!
|
||||
|
||||
|
||||
### Details
|
||||
* Day 2 (28.12.) **11:15 hours**
|
||||
* Duration: 4 hours (including travel times)
|
||||
* Cost: free, but donations very welcome!
|
||||
* Language: German and English
|
||||
* Accessibility: limited. The gravel road from the station to the train shed covers a height difference of about 15m, and the ground at the msueum is partially very uneven. You cannot reach the inside of the cars by elevator, some of the stairways are very steep and have very high steps.
|
||||
* Meet at Hackertours Desk: **11:15 hours**
|
||||
* Alternatively, you can come to the location directly. In this case, please let us know by writing us at [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de). Please arrive at the location **no later than one hour** after the time given above. We will be meeting at the S-Bahn stop Aumühle.
|
||||
* Location: Am Mühlenteich, 21521 Aumühle; <https://www.vvm-museumsbahn.de/?id=305>
|
||||
* Operator: Verein Verkehrsamateure und Museumsbahn e. V. (gemeinnützig)
|
BIN
content/en/38c3/eisenbahnmuseum/lokschuppen_hof.jpeg
Normal file
After Width: | Height: | Size: 3.7 MiB |
BIN
content/en/38c3/eisenbahnmuseum/lokschuppen_stellwerk.jpeg
Normal file
After Width: | Height: | Size: 3.4 MiB |
46
content/en/38c3/miwula/index.md
Normal file
|
@ -0,0 +1,46 @@
|
|||
---
|
||||
title: '38c3 Miniatur Wunderland'
|
||||
date: 2024-10-31T09:00:00+01:00
|
||||
summary: |
|
||||
The Miniatur Wunderland (German for: "Miniature Wonderland") is, according to Guinness World Records, the largest model railway system in the world. It is located at the historic Speicherstadt in Hamburg and is one of the most popular and most visited sights in Germany.
|
||||
|
||||
The exhibition includes around 1,120 digitally controlled trains with more than 10,000 wagons. The Wonderland is also designed with around 4,300 houses and bridges, more than 10,000 vehicles – of which around 350 drive independently on the installation – 52 airplanes and around 290,000 figures. The system features a recurring day-night lighting cycle and almost 500,000 built-in LED lights. Of the 7,000 m2 (75,347 sq ft) of floorspace, the models occupies 1,545 m2 (16,630 sq ft).
|
||||
---
|
||||
|
||||
The Miniatur Wunderland (German for: "Miniature Wonderland") is, according to Guinness World Records, the largest model railway system in the world. It is located at the historic Speicherstadt in Hamburg and is one of the most popular and most visited sights in Germany.
|
||||
|
||||
![Many tracks](miwula-tracks.jpeg)
|
||||
|
||||
![Köhlbrandbrücke](miwula-bridge.jpeg)
|
||||
|
||||
The exhibition includes around 1,120 digitally controlled trains with more than 10,000 wagons. The Wonderland is also designed with around 4,300 houses and bridges, more than 10,000 vehicles – of which around 350 drive independently on the installation – 52 airplanes and around 290,000 figures. The system features a recurring day-night lighting cycle and almost 500,000 built-in LED lights. Of the 7,000 m2 (75,347 sq ft) of floorspace, the models occupies 1,545 m2 (16,630 sq ft). [Wikipedia](https://en.wikipedia.org/wiki/Miniatur_Wunderland)
|
||||
|
||||
## Tour und Besuch
|
||||
|
||||
This time we offer these two options:
|
||||
|
||||
### Tour Behind the Scenes
|
||||
On Day 0, 26.12. we managed to book the [Backstage Tour](https://www.miniatur-wunderland.com/visiting/at-the-wunderland/guided-37c3/); this was the only Slot where we could book tours exclusively. In this tour, you are guided through the back of the model layout, into areas that are not normally accessible to visitors. Before and after the tour, you can visit the regular areas.
|
||||
|
||||
**Important** This tour is not accessible: the space behind the layout simly is too tight for wheelchairs or even crutches, and there are steps and low overhangs that need to be navigated. If you suffer from claustrophobia, this tour might not be for you. Also, you should be able to fit through passages that are only 30cm (12 inches) wide. Children under the age of 12 need to be accompanied by an adult.
|
||||
|
||||
### Visit Miniatur Wunderlands without a tour
|
||||
On Day 1, 2, and 3 we have reserved ticket that allow you to enter without queuing. On these days, Miwula is open until 1am, so you will have enough time to really look at everything. We recommend to take at least 3 hours.
|
||||
|
||||
## Details
|
||||
* Tours:
|
||||
* Day 0 (26.12.) Behind the scenes tour **17.15**. Duration approx 90 minutes, Miwula will be open until 21:00.
|
||||
* Day 1 (27.12.) Visit without guided tour **18:15 Uhr**. Miwula will be open until 01:00.
|
||||
* Day 2 (28.12.) Visit without guided tour **18:15 Uhr**. Miwula will be open until 01:00.
|
||||
* Day 3 (29.12.) Visit without guided tour **18:15 Uhr**. Miwula will be open until 01:00.
|
||||
* Duration: 6 hours
|
||||
* Language: Backstage Tour will be in German
|
||||
* Cost:
|
||||
* 21€ Visit without guided tour
|
||||
* 40€ Behind the scenes tour
|
||||
* Meet at Hackertours-Desk: **wie oben angegeben**.
|
||||
* **Important**
|
||||
* The backstage tour has limitations, see above.
|
||||
* If possible, please leave your bags and backpacks at the hotel or CCH. Miwula has a limited number of lockers, but there is no guarrantee that there will be space. You are not allowed to take bags into the venue.
|
||||
* Location: Kehrwieder 21, about 5 minutes by foot from U Baumwall station
|
||||
* Organizer: Miniatur Wunderland GmbH
|
BIN
content/en/38c3/miwula/miwula-bridge.jpeg
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
content/en/38c3/miwula/miwula-tracks.jpeg
Normal file
After Width: | Height: | Size: 84 KiB |
|
@ -1,11 +1,26 @@
|
|||
---
|
||||
title: 37c3 Hackertours (en)
|
||||
title: 38c3 Hackertours (en)
|
||||
menus:
|
||||
main:
|
||||
name: Home
|
||||
weight: 1
|
||||
params:
|
||||
headline: Welcome to Hackertours – your provider of sightseeing tours for technical enthusiasts!
|
||||
intro: |
|
||||
For Congress and for Easterhegg CCC Hamburg is organizing tours to interesting places in and around Hamburg. Here you will find infos about current and past events!
|
||||
logowidth: 500
|
||||
logoheight: 500
|
||||
cascade:
|
||||
params:
|
||||
intro: CCCHH shows you around Hamburg!
|
||||
---
|
||||
|
||||
## Welcome to HHackertours – your provider of sightseeing tours for technical enthusiasts!
|
||||
## Welcome to Hackertours – your provider of sightseeing tours for technical enthusiasts!
|
||||
|
||||
What are the Hackertours? The Hamburg team has sought out interesting locations in the city that will take you away from the catacombs of the Congress Center for a few hours, letting you experience exiting new things.
|
||||
|
||||
**[All Tours]({{< relref "tours" >}})** – **[Directly to the Ticket Shop](https://hackertours.hamburg.ccc.de/hackertours/37c3/)**
|
||||
**[All Tours]({{< relref "38c3" >}})** – **[Directly to the Ticket Shop](https://tickets.hamburg.ccc.de/hacker37c3/37c3/)**
|
||||
|
||||
Hackertours Desk: DECT 8687 "TOUR", +494057308308687, Foyer X next to the big clock
|
||||
|
||||
# News
|
||||
|
|
|
@ -6,8 +6,8 @@ summary: |
|
|||
---
|
||||
We have added more!
|
||||
|
||||
* [Old Elbe Tunnel]({{< relref "alter-elbtunnel" >}}) now also on Day 2 at 15:00 and on Day 3 at 18:00
|
||||
* [MS Stubnitz kultur.raumschiff]({{< relref "chaostrawler" >}}) on Day 2 at 16:00
|
||||
* [Energy Bunker Wilhelmsburg]({{< relref "energiebunker" >}}) on Day 3 at 15:00 (englisch) and 16:15 Uhr (deutsch)
|
||||
* [Old Elbe Tunnel]({{< relref "37c3/alter-elbtunnel" >}}) now also on Day 2 at 15:00 and on Day 3 at 18:00
|
||||
* [MS Stubnitz kultur.raumschiff]({{< relref "37c3/chaostrawler" >}}) on Day 2 at 16:00
|
||||
* [Energy Bunker Wilhelmsburg]({{< relref "37c3/energiebunker" >}}) on Day 3 at 15:00 (englisch) and 16:15 Uhr (deutsch)
|
||||
|
||||
Places are still available! And feel free to sign up for the waiting lists, people sometimes change their plans and give back their booked places. As soon as something becomes available, the places go to the people on the waiting lists!
|
||||
|
|
28
content/en/posts/2023-12-25-payment-waiting-list.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
---
|
||||
title: 'Cash payment and last-minute seats'
|
||||
date: 2023-12-25T09:00:00+01:00
|
||||
summary: |
|
||||
tl;dr: please pay your tickets at the hackertours desk. Any left over seats will be assigned at the beginning of each tour.
|
||||
---
|
||||
|
||||
**tl;dr:** please pay your tickets at the hackertours desk. Any left over places will be assigned at the beginning of each tour.
|
||||
|
||||
## Cash payment: before the tour starts at the latest
|
||||
|
||||
If you have chosen **cash payment**, please come to the hackertours desk **no later than the start time of your tour** and pay for your tickets. **Otherwise, we will reassign them**.
|
||||
|
||||
If oyu have paid already by bank transfer, just come to the desk at the published start time.
|
||||
|
||||
## Last-minute tour seats
|
||||
At the published start time we will be checking that all ticket holders are there and have paid. Any seats left over at this time will be assigned on the spot. So if you would like to join the tour, come to the Hackertours desk at the published start time. Make sure you have cash to pay for the tickets!
|
||||
|
||||
|
||||
## Opening Times Hackertours Desk
|
||||
|
||||
The Hackertours Desk is open:
|
||||
* Day 1: 12:00–18:00
|
||||
* Day 2: 10:00-16:00
|
||||
* Day 3: 10:00–18:00
|
||||
|
||||
You'll find us in foyer X next to the big clock, next to the info desk and the club table.
|
||||
|
12
content/en/posts/2023-12-26-escorts.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: 'Hackertours Escorts: Do you know your way around Hamburg?'
|
||||
date: 2023-12-26T09:00:00+01:00
|
||||
summary: |
|
||||
tl;dr: Help the tour group get from CCH to the tour location.
|
||||
---
|
||||
|
||||
Do you know your way around Hamburg? Then we need your help!
|
||||
|
||||
In order for the tour group to get to the location successfully, we would like one or two people to guide them. If you know your way around Hamburg and the public transport system, you can lead the group to the location, and also help everybody to get the right ticket. We have prepared a route card with all the important information: public transport connection, location address and walking directions, contact information for the organizer, size of the group, etc.
|
||||
|
||||
Would you like to help? Then simply contact us at the Hackertours desk 15 Minutes prior to the meeting time, and we will set you up!
|
8
content/en/posts/2023-12-28-open-seats.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: 'Last minute open seats'
|
||||
date: 2023-12-28T09:00:00+01:00
|
||||
summary: |
|
||||
Because some people have to cancel on short notice, we often have one or two open seats. Come to the Hackertours Desk at the start time of the tour.
|
||||
---
|
||||
|
||||
Unfortunately, some people will need to cancel their tour ticket on short notice. THis means that for most tours, one or two seats will be available on the day of the tour. If you would like to spontaneously join the tour, simply come to the Hackertours Desk at the start time of the tour, and we will try to add you to the group.
|
8
content/en/posts/2023-12-31-thanks.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: 'So long and thanks for all the fish!'
|
||||
date: 2023-12-31T09:00:00+01:00
|
||||
---
|
||||
|
||||
Thank you for traveling with Hackertours this Congress! We hope you enjoyed your tours, and we are looking forward to offering new tours at 38c3!
|
||||
|
||||
If you would like to stay in touch, please follow us on Mastodon [@hackertours@chaos.social](https://chaos.social/@hackertours)!
|
8
content/en/posts/2024-10-01-coming-up.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: 'Get excited about the tours at 38c3!'
|
||||
date: 2024-10-31T09:00:00+01:00
|
||||
---
|
||||
|
||||
We are preparing tours again for 38c3. As soon as we have nailed down the details, we'll let you know here.
|
||||
|
||||
To stay on top of the tours, follow us on Mastodon [@hackertours@chaos.social](https://chaos.social/@hackertours)!
|
|
@ -1,7 +1,8 @@
|
|||
---
|
||||
title: News
|
||||
weight: 1
|
||||
|
||||
weight: 2
|
||||
menus:
|
||||
main:
|
||||
---
|
||||
|
||||
Important updates for the tours.
|
|
@ -1,7 +1,10 @@
|
|||
+++
|
||||
title = ' Hackertours for 37c3 – FAQ'
|
||||
date = 2023-12-07T18:46:19+01:00
|
||||
+++
|
||||
---
|
||||
title: Hackertours for 38c3 – FAQ
|
||||
date: 2023-12-07T18:46:19+01:00
|
||||
menus:
|
||||
main:
|
||||
name: FAQ
|
||||
---
|
||||
|
||||
What are the Hackertours? The Hamburg team has sought out interesting locations in Hamburg that will take you away from the catacombs for a few hours, letting you experience exiting new things. Here we explain how this works!
|
||||
<!--more-->
|
||||
|
@ -12,8 +15,8 @@ What are the Hackertours? The Hamburg team has sought out interesting locations
|
|||
You need help? Contact us!
|
||||
|
||||
* Via Mail: [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de)
|
||||
* Via DECT: 8687 "TOUR"
|
||||
* On Location: at the Hackertours Desk, location to be published
|
||||
* Via DECT: 8687 "TOUR" or +494057308308687
|
||||
* On Location: at the Hackertours Desk, foyer X next to the big clock
|
||||
|
||||
We will keep you up to date on this website and on Mastodon [@hackertours@chaos.social](https://chaos.social/@hackertours).
|
||||
|
||||
|
@ -24,25 +27,23 @@ A group of people from CCCHH hat worked tirelessly the past few weeks to find in
|
|||
|
||||
### Do I need a ticket?
|
||||
|
||||
Yes, definitely. The tours have limited capacity only, so we need you to get a ticket to participate so we can plan and run these propertly.
|
||||
Yes, definitely. The tours have limited capacity only, so we need you to get a ticket to participate so we can plan and run these properly.
|
||||
|
||||
Please get your desired **[ticket in the Ticket Shop](https://hackertours.hamburg.ccc.de/hackertours/37c3/)** or place yourself on the waiting list!
|
||||
Please get your desired **[ticket in the Ticket Shop](https://tickets.hamburg.ccc.de/hacker37c3/38c3/)** or place yourself on the waiting list!
|
||||
|
||||
### Where and when do we meet up?
|
||||
|
||||
**All tours start and end** at CCH. **Please arrive on time** at the Hackertours Desk at the announced time, so we have time to check your ticket and have a chance to re-assign leftover spots to people on the waiting list! **If you do not come on time, we will give your ticket to somebody else.**
|
||||
|
||||
This also the **last chance to pay for your ticket**. If the ticket is not paid until the published start of the tour, we will try and give the seat to somebody else.
|
||||
|
||||
Our Hackertours Escorts will organize the tour group to travel to the location together (see below).
|
||||
|
||||
Alternatively, you can make your way to **the location by yourself. In this case please contact us as soon as possible** so we can give the escorts your name. Otherwise, we will assume that you will not take part in the tour, and give your seat to somebody else. Also, you need to have paid your ticket already to meet up at the location of the tour. If you have not done so via bank transfer in advance, then bring the correct amount in cash to the hackertours desk well in advance. You can find the arrival times at the locations in the [tour descriptions]({{< relref "tours" >}}).
|
||||
Alternatively, you can make your way to **the location by yourself. In this case please contact us as soon as possible** so we can give the escorts your name. Otherwise, we will assume that you will not take part in the tour, and give your seat to somebody else. Also, you need to have paid your ticket already to meet up at the location of the tour. If you have not done so via bank transfer in advance, then bring the correct amount in cash to the hackertours desk well in advance. You can find the arrival times at the locations in the [tour descriptions]({{< relref "38c3" >}}).
|
||||
|
||||
At the **published start timewe will reassign tickets to people in line at the Hackertours desk**, if seats are available.
|
||||
|
||||
### How do I get to the location of the tour?
|
||||
|
||||
Your tour admission price does **not** include a public transport ticket. The Hackertours Escort will help you navigate the public transport jungle of Hamburg! We use public transport to get to all locations, for which you will need a ticket. If you have a Deutschlandticket, or have a (multi) day pass to get to and from CCH, you're golden. For everybody else, we'll organize a ticket purchase at the station, for example by putting together groups of five for group tickets. It can't hurt to have 10 to 15 Euros in coins with you to purchase tickets.
|
||||
Your tour admission price does **not** include a public transport ticket. But don't fret, the Hackertours Escort will help you navigate the public transport jungle of Hamburg! We use public transport to get to all locations, for which you will need a ticket. If you have a Deutschlandticket, or have a (multi) day pass to get to and from CCH, you're golden. For everybody else, we'll organize a ticket purchase at the station, for example by putting together groups of five for group tickets. It can't hurt to have 10 to 15 Euros in coins with you to purchase tickets.
|
||||
|
||||
### I need help reaching the location of the tour
|
||||
|
||||
|
@ -50,37 +51,37 @@ If you have limitations or disabilities that make it harder for you to reach the
|
|||
|
||||
### Is the tour accessible?
|
||||
|
||||
Please check the description of the respective [Tour]({{< relref "tours" >}}). Unfortunately, many historic places are not really accessible. If you have specific questions, please contact us at [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de).
|
||||
Please check the description of the respective [Tour]({{< relref "38c3" >}}). Unfortunately, many historic places are not really accessible. If you have specific questions, please contact us at [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de).
|
||||
|
||||
### I don't speak German. Can I still take part in the tour?
|
||||
|
||||
Some of the tours are offered in English, as well. Please check the description of the respective [Tour]({{< relref "tours" >}}). Even if the tour guide will give the tour mainly in German, many participants are willing to help translate on the spot.
|
||||
Some of the tours are offered in English, as well. Please check the description of the respective [tour]({{< relref "38c3" >}}). Even if the tour guide will give the tour mainly in German, many participants are willing to help translate on the spot.
|
||||
|
||||
### How can I pay? Directly at the venue?
|
||||
### How can I pay?
|
||||
|
||||
For some tours the operator is charging a fee. You will need to pay your ticket in advance. Make sure to post your **bank transfer on Dec 21st the latest**. Alternatively, you can pay your ticket in **cash at the Hackertours Desk** in person. The desk will be ready to receive your payment at the following times:
|
||||
Some of the tours charge an entrance fee. To make it as easy as possible for everyone, you pay Hackertours when purchasing the ticket, and Hackertours makes sure all participants can start the tour without further delay (like having to wait in line at the ticket counter)
|
||||
|
||||
* Day 1: 13:00 to 17:00
|
||||
* Day 2: 10:00 to 18:00
|
||||
* Day 3: 10:00 to 16:00
|
||||
For this to work, you will need to pay your ticket in advance. Make sure to post your **bank transfer on Dec 23st the latest**. When you book tickets, the system will show you how many days you have to pay. If you don't pay in time, we will return the tickets to the shop for sale to somebody else.
|
||||
|
||||
When you purchase your tickets in the [Ticket Shop](https://hackertours.hamburg.ccc.de/hackertours/37c3/), you will receive an email with the bank account details and a custom "note to payee" value to identify your purchase. Please follow the instructions in that email. If for some reason you don't have that email, but you do have your code, you can use this information:
|
||||
When you purchase your tickets in the [Ticket Shop](https://tickets.hamburg.ccc.de/hacker37c3/38c3/), you will receive an email with the bank account details and a custom "note to payee" value to identify your purchase. Please follow the instructions in that email. If for some reason you don't have that email, but you do have your code, you can use this information:
|
||||
* Note to Payee: the purchase code for your ticket
|
||||
* IBAN: DE69 8306 5408 0105 2955 05
|
||||
* BIC: GENODEF1SLR
|
||||
* Name of Bank: VR-BANK ABG-LAND / SKATBANK
|
||||
|
||||
If you can't pay by bank transfer, please bring the exact amount in cash to the Hackertours Desk prior to your tour.
|
||||
If you can't pay by bank transfer, please contact us, we will see what we can do.
|
||||
|
||||
### Already fully booked? Can I still come?
|
||||
|
||||
We have **waiting lists** for all tours. Even if your favorite tour is already fully booked, there is still a chance to get a seat via the waiting list. We will re-assign seats people on the waiting list as they become available, on a first-come, first-served basis.
|
||||
We have **waiting lists** for all tours. Even if your favorite tour is already fully booked, there is still a chance to get a seat via the waiting list. We will re-assign seats to people on the waiting list as they become available, on a first-come, first-served basis.
|
||||
|
||||
**The remaining seats will be re-assigned on the spot at the Hackertoursd esk**. Please stop by the desk right before the tour starts for your chance to snap up one of those tickets.
|
||||
**The remaining seats will be re-assigned on the spot at the Hackertours desk**. Please stop by the desk right before the tour starts for your chance to snap up one of those tickets.
|
||||
|
||||
### I can't come :-(
|
||||
|
||||
If you cannot take part in the tour, please return your ticket, so others have a chance to participate! Simply use the [Ticket Shop](https://hackertours.hamburg.ccc.de/hackertours/37c3/) to return it, or send us a mail at [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de). Thank you!
|
||||
**Wen can't cancel and refund paid tickets.** If you cannot take part in a paid tour, please try to find somebody else interested in taking your place. If that's not possible for you, please contact us at [ticket@hackertours.hamburg.ccc.de](mailto:ticket@hackertours.hamburg.ccc.de).
|
||||
|
||||
**Please cancel free-of-charge tickets as soon as possible.** If you know that you won't be bale to attend the tour, please cancel your ticket in the shop as soon as possible, so that others can take your place.
|
||||
|
||||
### Help, nothing's working!
|
||||
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
---
|
||||
title: Tours
|
||||
#listsort: true
|
||||
weight: 10
|
||||
#tables: true
|
||||
|
||||
---
|
||||
|
||||
These are the tours on offer for 37c3.
|
||||
|
||||
|
||||
| Time | Day 1 (27.12.) | Day 2 (28.12.) | Day 3 (29.12.) |
|
||||
|-------|----------------|----------------|----------------|
|
||||
| 10 | – | 10:45 [U-434]({{< relref "u-434" >}}) | 10:45 [U-434]({{< relref "u-434" >}}) |
|
||||
| 11 | – | 11:15 [Train Museum]({{< relref "eisenbahnmuseum" >}}) | – |
|
||||
| 12 | 12:30 [electrum]({{< relref "electrum" >}}) | 12:40 [Cap San Diego]({{< relref "cap-san-diego" >}}) | 12:40 [Cap San Diego]({{< relref "cap-san-diego" >}}) |
|
||||
| 13 | – | 13:40 [Old Elbe Tunnel]({{< relref "alter-elbtunnel" >}}) | 13:20 [Energy Bunker]({{< relref "energiebunker" >}}) de |
|
||||
| 14 | 14:40 [Old Elbe Tunnel]({{< relref "alter-elbtunnel" >}}) | 14:45 [MS Stubnitz]({{< relref "chaostrawler" >}}) | 14:35 [Energy Bunker]({{< relref "energiebunker" >}}) de |
|
||||
| | | | 14:40 [Old Elbe Tunnel]({{< relref "alter-elbtunnel" >}})|
|
||||
| 15 | 15:45 [U-434]({{< relref "u-434" >}}) | 15:40 [Old Elbe Tunnel]({{< relref "alter-elbtunnel" >}}) | |
|
||||
| 16 | 16:40 [Old Elbe Tunnel]({{< relref "alter-elbtunnel" >}}) | – | 16:40 [Old Elbe Tunnel]({{< relref "alter-elbtunnel" >}}) |
|
||||
|
||||
There are no tours on day 4 (30.12.).
|
18
hugo.yaml
|
@ -2,19 +2,23 @@ baseURL: 'https://hackertours.hamburg.ccc.de/'
|
|||
defaultContentLanguage: de
|
||||
defaultContentLanguageInSubdir: true
|
||||
#languageCode: 'de-de'
|
||||
title: '37c3 Hackertours'
|
||||
title: 'Hackertours'
|
||||
theme: "zen"
|
||||
ignoreLogs:
|
||||
- 'warning-frontmatter-params-overrides'
|
||||
|
||||
#https://themes.gohugo.io/themes/hugo-theme-zen/#configuration
|
||||
params:
|
||||
contact: "hhackertours@lists.hamburg.ccc.de"
|
||||
contact: "hackertours@hamburg.ccc.de"
|
||||
copyright: "[CCC Hansestadt Hamburg e.V.](https://hamburg.ccc.de) ist nur der Vermittler, für die Touren sind die jeweiligen Veranstalter verantwortlich"
|
||||
description: "37c3 Hackertours"
|
||||
footer: "[Impressum & Datenschutz](https://hamburg.ccc.de/imprint/) – [Ticket Shop](https://hackertours.hamburg.ccc.de/hackertours/37c3/)"
|
||||
logo: false
|
||||
footer: "[Impressum & Datenschutz](https://hamburg.ccc.de/imprint/) – [Ticket Shop](https://tickets.hamburg.ccc.de/hacker37c3/37c3/)"
|
||||
logo: true
|
||||
logoPath: img/hackertours-2024-color.svg
|
||||
logoHeight: 100
|
||||
logoWidth: 100
|
||||
mainSections:
|
||||
- posts
|
||||
- tours
|
||||
mobileMenu: true
|
||||
poweredby: false
|
||||
|
||||
|
@ -24,10 +28,10 @@ languages:
|
|||
languageName: "English"
|
||||
languageCode: "en"
|
||||
contentDir: content/en
|
||||
title: "37c3 Hackertours"
|
||||
title: "Hackertours"
|
||||
de:
|
||||
weight: 2
|
||||
languageName: "Deutsch"
|
||||
languageCode: "de"
|
||||
contentDir: content/de
|
||||
title: "37c3 Hackertours"
|
||||
title: "Hackertours"
|
||||
|
|
58
layouts/_default/baseof.html
Normal file
|
@ -0,0 +1,58 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="nojs" lang="{{ site.LanguageCode | default site.Language.Lang }}" dir="{{ site.Language.LanguageDirection | default "ltr" }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>{{ block "title" . }}{{ .Title }} – {{ site.Title }}{{ end }}</title>
|
||||
{{ partial "meta.html" . }}
|
||||
{{ partialCached "styles.html" . }}
|
||||
{{ partial "meta_json_ld.html" . }}
|
||||
{{ partial "scripts.html" . }}
|
||||
{{ partial "math.html" . }}
|
||||
{{ partialCached "tracking.html" . }}
|
||||
{{ if templates.Exists "partials/head.html" -}}
|
||||
{{ partial "head.html" . }}
|
||||
{{ end -}}
|
||||
{{ block "head" . }}{{ end }}
|
||||
</head>
|
||||
|
||||
<body class="{{ if .IsPage }}single-page{{ else }}list-page{{ end }}{{ if .IsHome }} front{{ end }}{{ with $.Param "bodyclass" }} {{ . }}{{ end }}">
|
||||
<div class="page layout__page{{ if $.Param "sidebar" }} layout__sidebar-second{{ end }}">
|
||||
<header class="header layout__header">
|
||||
{{ if $.Param "logo" | default true -}}
|
||||
<a href="{{ site.Home.RelPermalink }}" title="Home" rel="home" class="header__logo">
|
||||
<img src="{{ with $.Param "logopath" }}{{ . | relURL }}{{ else }}{{ "images/logo.png" | relURL }}{{ end }}"{{ with $.Param "logowidth" }} width="{{ . }}"{{ end }}{{ with $.Param "logoheight" }} height="{{ . }}"{{ end }} alt="Home" class="header__logo-image">
|
||||
</a>
|
||||
{{ end -}}
|
||||
<div class="header__intro">
|
||||
<div class="header__intro_headline"><a href="{{ site.Home.RelPermalink }}" title="Home" class="header__site-link" rel="home"><span>{{ site.Title }}</span></a></div>
|
||||
<div class="header__intro_text">{{ .Param "intro" }}</div>
|
||||
</div>
|
||||
<div class="region header__region">
|
||||
{{ if hugo.IsMultilingual }}{{ partial "language-selector.html" . }}{{ end -}}
|
||||
{{ if $.Param "menuinheader" }}{{ partial "menu.html" . }}{{ end -}}
|
||||
</div>
|
||||
</header>
|
||||
|
||||
{{ if not ($.Param "menuinheader") }}{{ partial "menu.html" . }}{{ end -}}
|
||||
{{ if $.Param "mobilemenu" }}{{ partial "mobilemenu.html" . }}{{ end -}}
|
||||
|
||||
{{ block "main" . }}{{ end }}
|
||||
|
||||
{{ if $.Param "sidebar" }}{{ partial "sidebar.html" . }}{{ end -}}
|
||||
|
||||
<footer class="footer layout__footer mt--l">
|
||||
{{ if templates.Exists "partials/footer.html" -}}
|
||||
{{ partial "footer.html" . }}
|
||||
{{ else -}}
|
||||
{{ if $.Param "feedlinks" }}{{ partial "feedlinks.html" . }}{{ end -}}
|
||||
<p>{{ with $.Param "copyright" }}{{ . | markdownify }}{{ else }}<span>© {{ site.Title }}</span>{{ end }}</p>
|
||||
{{ with $.Param "footer" }}<p>{{ . | markdownify }}</p>{{ end }}
|
||||
{{ if $.Param "poweredby" }}<p>Powered by <a href="https://gohugo.io/">Hugo</a> and the <a href="https://github.com/frjo/hugo-theme-zen">Zen theme</a>.</p>{{ end }}
|
||||
{{ end -}}
|
||||
</footer>
|
||||
|
||||
{{ if $.Param "cookieconsent" }}{{ partialCached "cookieconsent.html" . }}{{ end -}}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
60
layouts/home/baseof.html
Normal file
|
@ -0,0 +1,60 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="nojs" lang="{{ site.LanguageCode | default site.Language.Lang }}" dir="{{ site.Language.LanguageDirection | default "ltr" }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>{{ block "title" . }}{{ .Title }} – {{ site.Title }}{{ end }}</title>
|
||||
{{ partial "meta.html" . }}
|
||||
{{ partialCached "styles.html" . }}
|
||||
{{ partial "meta_json_ld.html" . }}
|
||||
{{ partial "scripts.html" . }}
|
||||
{{ partial "math.html" . }}
|
||||
{{ partialCached "tracking.html" . }}
|
||||
{{ if templates.Exists "partials/head.html" -}}
|
||||
{{ partial "head.html" . }}
|
||||
{{ end -}}
|
||||
{{ block "head" . }}{{ end }}
|
||||
</head>
|
||||
|
||||
<body class="{{ if .IsPage }}single-page{{ else }}list-page{{ end }}{{ if .IsHome }} front{{ end }}{{ with $.Param "bodyclass" }} {{ . }}{{ end }}">
|
||||
<div class="page layout__page{{ if $.Param "sidebar" }} layout__sidebar-second{{ end }}">
|
||||
<header class="header layout__header">
|
||||
{{ if $.Param "logo" | default true -}}
|
||||
<a href="{{ site.Home.RelPermalink }}" title="Home" rel="home" class="header__logo">
|
||||
<img src="{{ with $.Param "logopath" }}{{ . | relURL }}{{ else }}{{ "images/logo.png" | relURL }}{{ end }}"{{ with $.Param "logowidth" }} width="{{ . }}"{{ end }}{{ with $.Param "logoheight" }} height="{{ . }}"{{ end }} alt="Home" class="header__logo-image">
|
||||
</a>
|
||||
{{ end -}}
|
||||
<div class="header__intro">
|
||||
<div class="header__intro_headline">{{ .Param "headline" }}</div>
|
||||
{{ if .Param "intro" }}
|
||||
<div class="header__intro_text">{{ .Param "intro" }}</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="region header__region">
|
||||
{{ if hugo.IsMultilingual }}{{ partial "language-selector.html" . }}{{ end -}}
|
||||
{{ if $.Param "menuinheader" }}{{ partial "menu.html" . }}{{ end -}}
|
||||
</div>
|
||||
</header>
|
||||
|
||||
{{ if not ($.Param "menuinheader") }}{{ partial "menu.html" . }}{{ end -}}
|
||||
{{ if $.Param "mobilemenu" }}{{ partial "mobilemenu.html" . }}{{ end -}}
|
||||
|
||||
{{ block "main" . }}{{ end }}
|
||||
|
||||
{{ if $.Param "sidebar" }}{{ partial "sidebar.html" . }}{{ end -}}
|
||||
|
||||
<footer class="footer layout__footer mt--l">
|
||||
{{ if templates.Exists "partials/footer.html" -}}
|
||||
{{ partial "footer.html" . }}
|
||||
{{ else -}}
|
||||
{{ if $.Param "feedlinks" }}{{ partial "feedlinks.html" . }}{{ end -}}
|
||||
<p>{{ with $.Param "copyright" }}{{ . | markdownify }}{{ else }}<span>© {{ site.Title }}</span>{{ end }}</p>
|
||||
{{ with $.Param "footer" }}<p>{{ . | markdownify }}</p>{{ end }}
|
||||
{{ if $.Param "poweredby" }}<p>Powered by <a href="https://gohugo.io/">Hugo</a> and the <a href="https://github.com/frjo/hugo-theme-zen">Zen theme</a>.</p>{{ end }}
|
||||
{{ end -}}
|
||||
</footer>
|
||||
|
||||
{{ if $.Param "cookieconsent" }}{{ partialCached "cookieconsent.html" . }}{{ end -}}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
6
renovate.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:recommended"
|
||||
]
|
||||
}
|
BIN
static/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
static/favicon-48x48.png
Normal file
After Width: | Height: | Size: 5.2 KiB |