Add news
This commit is contained in:
parent
97846757cd
commit
0252625643
|
@ -8,3 +8,6 @@ title = "franconian.net"
|
|||
languageName = "Deutsch"
|
||||
|
||||
[taxonomies]
|
||||
|
||||
[permalinks]
|
||||
news = "/:06/:1/:2/:slug/"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: FAQ
|
||||
menu:
|
||||
main:
|
||||
weight: 1
|
||||
weight: 3
|
||||
---
|
||||
|
||||
#### Was ist die Antwort auf die Frage nach dem Leben, dem Universum und dem ganzen Rest?
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: FAQ
|
||||
menu:
|
||||
main:
|
||||
weight: 1
|
||||
weight: 3
|
||||
---
|
||||
|
||||
#### What is "The Answer to the Ultimate Question of Life, the Universe, and Everything"?
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: News
|
||||
menu:
|
||||
main:
|
||||
weight: 1
|
||||
---
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: News
|
||||
menu:
|
||||
main:
|
||||
weight: 1
|
||||
---
|
||||
|
|
@ -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.
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: Website under construction
|
||||
date: "2020-11-24"
|
||||
---
|
||||
|
||||
Hi, as you might have noticed this website is still under construction.
|
|
@ -2,7 +2,7 @@
|
|||
title: Programm
|
||||
menu:
|
||||
main:
|
||||
weight: 3
|
||||
weight: 4
|
||||
---
|
||||
|
||||
Das Programm erscheint in Kürze.
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: Program
|
||||
menu:
|
||||
main:
|
||||
weight: 3
|
||||
weight: 4
|
||||
---
|
||||
|
||||
The schedule for the franconian.net channel will be released shortly.
|
||||
|
|
|
@ -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 }}
|
|
@ -0,0 +1,7 @@
|
|||
{{ define "main" }}
|
||||
<main>
|
||||
<h1>{{ .Title }}</h1>
|
||||
<p>{{ .Date.Format "2006-01-02" }}</p>
|
||||
{{ .Content }}
|
||||
</main>
|
||||
{{ end }}
|
Loading…
Reference in New Issue