Compare commits
No commits in common. "a36344f76e5e1a876986494350aeb892c05edf17" and "bb80f1f08a09f319721ffa14437d77bf075c6e1b" have entirely different histories.
a36344f76e
...
bb80f1f08a
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -102,6 +102,3 @@ shell.nix
|
||||||
|
|
||||||
# Python
|
# Python
|
||||||
.venv
|
.venv
|
||||||
|
|
||||||
# murmeldin
|
|
||||||
overview.md
|
|
2
build.sh
2
build.sh
|
@ -3,8 +3,6 @@
|
||||||
set -e
|
set -e
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
rm -rf public/ # delete old generated files
|
|
||||||
|
|
||||||
hugo $(cat .hugo-params)
|
hugo $(cat .hugo-params)
|
||||||
./tools/merge_cals.py
|
./tools/merge_cals.py
|
||||||
upcoming="$(tools/gen_upcoming.py static/all.ics 20 5 | tr '\n' ' ')"
|
upcoming="$(tools/gen_upcoming.py static/all.ics 20 5 | tr '\n' ' ')"
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
theme = 'blowfish'
|
# -- Site Configuration --
|
||||||
baseURL = 'https://oururl.de/'
|
# Refer to the theme docs for more details about each of these parameters.
|
||||||
defaultContentLanguage = 'de'
|
# https://blowfish.page/docs/getting-started/
|
||||||
relativeURLs = true
|
|
||||||
canonifyURLs = true
|
|
||||||
|
|
||||||
pluralizeListTitles = false
|
theme = "blowfish" # UNCOMMENT THIS LINE
|
||||||
|
baseURL = "https://berlin.ccc.de/"
|
||||||
|
defaultContentLanguage = "de"
|
||||||
|
RelativeURLs = true
|
||||||
|
CanonifyURLs = true
|
||||||
|
|
||||||
|
pluralizeListTitles = "false" # hugo function useful for non-english languages, find out more in https://gohugo.io/getting-started/configuration/#pluralizelisttitles
|
||||||
|
|
||||||
enableRobotsTXT = true
|
enableRobotsTXT = true
|
||||||
summaryLength = 0
|
summaryLength = 0
|
||||||
|
@ -14,6 +18,8 @@ buildFuture = false
|
||||||
|
|
||||||
enableEmoji = true
|
enableEmoji = true
|
||||||
|
|
||||||
|
# googleAnalytics = "G-XXXXXXXXX"
|
||||||
|
|
||||||
[pagination]
|
[pagination]
|
||||||
pagerSize = 100
|
pagerSize = 100
|
||||||
|
|
||||||
|
@ -21,10 +27,10 @@ enableEmoji = true
|
||||||
anchor = 'Center'
|
anchor = 'Center'
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
tag = 'tags'
|
tag = "tags"
|
||||||
category = 'categories'
|
category = "categories"
|
||||||
author = 'authors'
|
author = "authors"
|
||||||
series = 'series'
|
series = "series"
|
||||||
|
|
||||||
[sitemap]
|
[sitemap]
|
||||||
changefreq = 'daily'
|
changefreq = 'daily'
|
||||||
|
@ -32,61 +38,63 @@ enableEmoji = true
|
||||||
priority = 0.5
|
priority = 0.5
|
||||||
|
|
||||||
[permalinks]
|
[permalinks]
|
||||||
post = '/post/:year/:month/:day/:title/'
|
post = "/post/:year/:month/:day/:title/"
|
||||||
|
|
||||||
[outputs]
|
[outputs]
|
||||||
home = ['html', 'rss', 'json']
|
home = ["HTML", "RSS", "JSON"]
|
||||||
section = ['html', 'Calendar', 'rss', 'xml']
|
section = ["HTML", "Calendar", "RSS", "XML", "ICS"]
|
||||||
page = ['html', 'Calendar']
|
page = ["HTML", "Calendar", "ICS"]
|
||||||
|
|
||||||
# Output Formats Configuration
|
# Output Formats Configuration
|
||||||
[outputFormats.Calendar]
|
[outputFormats.Calendar]
|
||||||
mediaType = 'text/calendar'
|
mediaType = "text/calendar"
|
||||||
baseName = 'index'
|
baseName = "index"
|
||||||
isPlainText = true
|
isPlainText = true
|
||||||
notAlternative = true
|
notAlternative = true
|
||||||
|
|
||||||
[outputFormats.XML]
|
[outputFormats.XML]
|
||||||
mediaType = 'application/xml'
|
mediaType = "application/xml"
|
||||||
baseName = 'index'
|
baseName = "index"
|
||||||
isPlainText = true
|
isPlainText = true
|
||||||
|
|
||||||
[outputFormats.RSS]
|
[outputFormats.RSS]
|
||||||
mediaType = 'application/rss+xml'
|
mediaType = "application/rss+xml"
|
||||||
|
|
||||||
# Media Types Configuration
|
# Media Types Configuration
|
||||||
[mediaTypes]
|
[mediaTypes]
|
||||||
[mediaTypes.'text/calendar']
|
[mediaTypes."text/calendar"]
|
||||||
suffixes = ['ics']
|
suffixes = ["ics"]
|
||||||
[mediaTypes.'application/rss+xml']
|
[mediaTypes."application/rss"]
|
||||||
suffixes = ['xml', 'rss']
|
suffixes = ["rss"]
|
||||||
|
[mediaTypes."application/xml"]
|
||||||
|
suffixes = ["xml"]
|
||||||
|
|
||||||
[related]
|
[related]
|
||||||
threshold = 0
|
threshold = 0
|
||||||
toLower = false
|
toLower = false
|
||||||
|
|
||||||
[[related.indices]]
|
[[related.indices]]
|
||||||
name = 'tags'
|
name = "tags"
|
||||||
weight = 100
|
weight = 100
|
||||||
|
|
||||||
[[related.indices]]
|
[[related.indices]]
|
||||||
name = 'categories'
|
name = "categories"
|
||||||
weight = 100
|
weight = 100
|
||||||
|
|
||||||
[[related.indices]]
|
[[related.indices]]
|
||||||
name = 'series'
|
name = "series"
|
||||||
weight = 50
|
weight = 50
|
||||||
|
|
||||||
[[related.indices]]
|
[[related.indices]]
|
||||||
name = 'authors'
|
name = "authors"
|
||||||
weight = 20
|
weight = 20
|
||||||
|
|
||||||
[[related.indices]]
|
[[related.indices]]
|
||||||
name = 'date'
|
name = "date"
|
||||||
|
weight = 10
|
||||||
|
|
||||||
|
[[related.indices]]
|
||||||
|
applyFilter = false
|
||||||
|
name = 'fragmentrefs'
|
||||||
|
type = 'fragments'
|
||||||
weight = 10
|
weight = 10
|
||||||
|
|
||||||
[[related.indices]]
|
|
||||||
applyFilter = false
|
|
||||||
name = 'fragmentrefs'
|
|
||||||
type = 'fragments'
|
|
||||||
weight = 10
|
|
||||||
|
|
|
@ -29,4 +29,5 @@ title = "Chaos Computer Club Berlin"
|
||||||
{ forgejo = "https://git.berlin.ccc.de/explore/repos" },
|
{ forgejo = "https://git.berlin.ccc.de/explore/repos" },
|
||||||
{ email = "mailto:mail2025@berlin.ccc.de" },
|
{ email = "mailto:mail2025@berlin.ccc.de" },
|
||||||
{ github = "https://github.com/cccb/" },
|
{ github = "https://github.com/cccb/" },
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
# The footer menu is displayed at the bottom of the page, just before
|
# The footer menu is displayed at the bottom of the page, just before
|
||||||
# the copyright notice. Configure as per the main menu above.
|
# the copyright notice. Configure as per the main menu above.
|
||||||
|
|
||||||
|
|
||||||
[[footer]]
|
[[footer]]
|
||||||
name = "Tags"
|
name = "Tags"
|
||||||
pageRef = "tags"
|
pageRef = "tags"
|
||||||
|
|
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 46 KiB |
|
@ -1,24 +0,0 @@
|
||||||
---
|
|
||||||
categories: ["Datengarten"]
|
|
||||||
tags: ["not yet announced", "Datengarten", "Veranstaltung"]
|
|
||||||
series: "Datengarten"
|
|
||||||
title: "Datengarten 113"
|
|
||||||
no: 113
|
|
||||||
subtitle: ""
|
|
||||||
speaker: "not yet announced"
|
|
||||||
date: 2025-03-24T19:00:00+01:00
|
|
||||||
event:
|
|
||||||
start: 2025-04-04T20:00:00+01:00
|
|
||||||
end: 2025-04-04T21:30:00+01:00
|
|
||||||
location: CCCB
|
|
||||||
language: de
|
|
||||||
streaming: true
|
|
||||||
recording: https://streaming.media.ccc.de/datengarten/cccb
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
|
|
||||||
Am 07.05. findet um 20 Uhr wieder ein Datengarten statt, der noch angekündigt wird. Mehr dazu demnächst hier.
|
|
||||||
|
|
||||||
//
|
|
||||||
|
|
||||||
On 07.05., 20:00, there will be another Datengarten, which will be announced soon. You will find more information here soon.
|
|
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 46 KiB |
|
@ -1,24 +0,0 @@
|
||||||
---
|
|
||||||
categories: ["Datengarten"]
|
|
||||||
tags: ["Alltag", "Kompression", "Mediendateien", "Datengarten", "Veranstaltung"]
|
|
||||||
series: "Datengarten"
|
|
||||||
title: "Datengarten 1XX"
|
|
||||||
no: 1XX
|
|
||||||
subtitle: ""
|
|
||||||
speaker: ""
|
|
||||||
date: 2025-03-24T19:00:00+01:00
|
|
||||||
event:
|
|
||||||
start: 2025-04-04T20:00:00+01:00
|
|
||||||
end: 2025-04-04T21:30:00+01:00
|
|
||||||
location: CCCB
|
|
||||||
language: de
|
|
||||||
streaming: true
|
|
||||||
recording: https://streaming.media.ccc.de/datengarten/cccb
|
|
||||||
draft: true
|
|
||||||
---
|
|
||||||
|
|
||||||
Am 07.05. findet wieder ein Datengarten statt, der noch angekündigt wird. Mehr dazu demnächst hier.
|
|
||||||
|
|
||||||
//
|
|
||||||
|
|
||||||
On 07.05. there will be another Datengarten, which will be announced soon. You will find more information here soon.
|
|
|
@ -27,7 +27,7 @@ Eine beschränkte Anzahl von Fahrradständern befindet sich im Innenhof. Auf dem
|
||||||
|
|
||||||
## mit öffentlichem Nahverkehr
|
## mit öffentlichem Nahverkehr
|
||||||
|
|
||||||
Der Club befindet sich in unmittelbarer Nähe zum S+U Bahnhof **Friedrichstraße**, an dem auch Regionalbahnen halten. Vom S-Bahn-Bahnsteig (S3/S5/S7, oberirdisch, Ausgang Schiffbauerdamm) gibt es einen direkten Weg über die Spree unterhalb der Bahnbrücke. Über die Albrechtstraße erreicht ihr die Marienstraße.
|
Der Club befindet sich in unmittelbarer Nähe zum S+U Bahnhof **Friedrichstraße**, an dem auch Regionalbahnen halten. Vom S-Bahn-Bahnsteig gibt es einen direkten Weg über die Spree unterhalb der Bahnbrücke. Über die Albrechtstraße erreicht ihr die Marienstraße.
|
||||||
|
|
||||||
## mit dem Fernverkehr
|
## mit dem Fernverkehr
|
||||||
|
|
||||||
|
|
|
@ -16,8 +16,8 @@ DESCRIPTION:{{ . }}
|
||||||
Link: https://berlin.ccc.de{{ $.RelPermalink }}
|
Link: https://berlin.ccc.de{{ $.RelPermalink }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
URL:https://berlin.ccc.de{{ .RelPermalink }}
|
URL:https://berlin.ccc.de{{ .RelPermalink }}
|
||||||
{{ with .Params.dtstart }}DTSTART;TZID=Europe/Berlin:{{ . }}{{ end }}
|
{{ with .Params.dtstart }}DTSTART:{{ . }}{{ end }}
|
||||||
{{ with .Params.dtend }}DTEND;TZID=Europe/Berlin:{{ . }}{{ end }}
|
{{ with .Params.dtend }}DTEND:{{ . }}{{ end }}
|
||||||
{{ with .Params.rrule }}RRULE:{{ . }}{{ end }}
|
{{ with .Params.rrule }}RRULE:{{ . }}{{ end }}
|
||||||
DTSTAMP:{{ now.Format "20060102T150405Z" }}
|
DTSTAMP:{{ now.Format "20060102T150405Z" }}
|
||||||
END:VEVENT
|
END:VEVENT
|
||||||
|
|
Loading…
Reference in a new issue