Compare commits

...

2 Commits

Author SHA1 Message Date
Martin Müller f230cdeab9 Merge branch 'main' of https://git.luj0ga.de/franconian/www.franconian.net into main
continuous-integration/drone/push Build is passing Details
2020-11-24 22:54:37 +01:00
Martin Müller 0252625643 Add news 2020-11-24 22:47:15 +01:00
13 changed files with 54 additions and 6 deletions

View File

@ -9,3 +9,6 @@ enableGitInfo = true
languageName = "Deutsch"
[taxonomies]
[permalinks]
news = "/:06/:1/:2/:slug/"

View File

@ -2,7 +2,7 @@
title: Über uns
menu:
main:
weight: 3
weight: 4
---
franconian.net ist ein loses Netzwerk von einigen fränkischen Hackspaces, das sich erstmalig zum Chaos Communication Camp 2019 für ein gemeinsames Village organisiert hat. Dieser Zusammenschluss hat das CCCamp19 überdauert und findet sich vor allem zu weiteren Veranstaltungen des Chaos Computer Clubs immer wieder zusammen. Auch zur remote Chaos Experience haben sich wieder einige dieser Hackspaces gefunden und betreiben zusammen das franconian.net

View File

@ -2,7 +2,7 @@
title: About us
menu:
main:
weight: 3
weight: 4
---
The Franconian Cluster is a network of franconian hackspaces that organised the Franconian Village at Chaos Communication Camp 2019. After that, we continued our cooperation mainly at other events held by the Chaos Computer Club. For the first Remote Chaos Experience (rC3), some of the involved spaces decided to create a virtual assembly: franconian.net

View File

@ -2,7 +2,7 @@
title: FAQ
menu:
main:
weight: 2
weight: 3
---
#### Was ist die Antwort auf die Frage nach dem Leben, dem Universum und dem ganzen Rest?

View File

@ -2,7 +2,7 @@
title: FAQ
menu:
main:
weight: 2
weight: 3
---
#### What is "The Answer to the Ultimate Question of Life, the Universe, and Everything"?

View File

@ -0,0 +1,7 @@
---
title: News
menu:
main:
weight: 2
---

7
content/news/_index.md Normal file
View File

@ -0,0 +1,7 @@
---
title: News
menu:
main:
weight: 2
---

View File

@ -0,0 +1,6 @@
---
title: Webseite im Aufbau
date: "2020-11-24"
---
Hi, wie du vielleicht schon gemerkt hast, befindet sich diese Webseite noch im Aufbau.

6
content/news/post-01.md Normal file
View File

@ -0,0 +1,6 @@
---
title: Website under construction
date: "2020-11-24"
---
Hi, as you might have noticed this website is still under construction.

View File

@ -2,7 +2,7 @@
title: Programm
menu:
main:
weight: 4
weight: 5
---
Das Programm erscheint in Kürze.

View File

@ -2,7 +2,7 @@
title: Schedule
menu:
main:
weight: 4
weight: 5
---
The schedule for the franconian.net channel will be released shortly.

View File

@ -0,0 +1,12 @@
{{ define "main" }}
<main>
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<li>
<a href="{{.Permalink}}">{{.Date.Format "2006-01-02"}} | {{.Title}}</a>
</li>
{{ end }}
</main>
{{ end }}

7
layouts/news/single.html Normal file
View File

@ -0,0 +1,7 @@
{{ define "main" }}
<main>
<h1>{{ .Title }}</h1>
<p>{{ .Date.Format "2006-01-02" }}</p>
{{ .Content }}
</main>
{{ end }}