Compare commits
8 Commits
fa46e41da4
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
811f4faeb4
|
|||
|
a8eed99d8f
|
|||
|
43ff5e3bfc
|
|||
|
4f3ddfc459
|
|||
|
0e9e7efb6a
|
|||
|
da33fa65de
|
|||
|
93610e4698
|
|||
|
92ff735d7f
|
@@ -8,12 +8,12 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v4
|
uses: https://git.hogertz.eu/actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- name: Setup Hugo
|
- name: Setup Hugo
|
||||||
uses: peaceiris/actions-hugo@v3
|
uses: https://git.hogertz.eu/actions/hugo@75d2e84710de30f6ff7268e08f310b60ef14033f
|
||||||
with:
|
with:
|
||||||
hugo-version: '0.152.2'
|
hugo-version: '0.152.2'
|
||||||
# extended: true
|
# extended: true
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ weight = 10
|
|||||||
[[main]]
|
[[main]]
|
||||||
name = "Über Uns"
|
name = "Über Uns"
|
||||||
weight = 20
|
weight = 20
|
||||||
|
pageRef = "hauptverein"
|
||||||
|
|
||||||
[[main]]
|
[[main]]
|
||||||
name = "Hauptverein"
|
name = "Hauptverein"
|
||||||
@@ -36,6 +37,12 @@ url = "https://www.facebook.com/people/Musikverein-Molbergen-MVM/100040265892660
|
|||||||
identifier = "sdIxPeDJlk"
|
identifier = "sdIxPeDJlk"
|
||||||
weight = 40
|
weight = 40
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
pre = "rss"
|
||||||
|
url = "/index.xml"
|
||||||
|
identifier = "sdIxKeDJlk"
|
||||||
|
weight = 50
|
||||||
|
|
||||||
[[footer]]
|
[[footer]]
|
||||||
none = "none"
|
none = "none"
|
||||||
|
|
||||||
|
|||||||
@@ -35,8 +35,8 @@ showScrollToTop = true
|
|||||||
[homepage]
|
[homepage]
|
||||||
layout = "page"
|
layout = "page"
|
||||||
showRecent = true
|
showRecent = true
|
||||||
showRecentItems = 1
|
showRecentItems = 2
|
||||||
showMoreLink = false
|
showMoreLink = true
|
||||||
showMoreLinkDest = "/artikel/"
|
showMoreLinkDest = "/artikel/"
|
||||||
cardView = false
|
cardView = false
|
||||||
cardViewScreenWidth = true
|
cardViewScreenWidth = true
|
||||||
|
|||||||
@@ -8,20 +8,19 @@ showPagination: false
|
|||||||
|
|
||||||
```
|
```
|
||||||
Musikverein Molbergen e.V.
|
Musikverein Molbergen e.V.
|
||||||
Auf dem Woop 2
|
Kirchstr. 6
|
||||||
49696 Grönheim
|
49696 Molbergen
|
||||||
|
|
||||||
Vereinsregister: VR 150701
|
Vereinsregister: VR 150701
|
||||||
Registergericht: Amtsgericht Oldenburg
|
Registergericht: Amtsgericht Oldenburg
|
||||||
```
|
```
|
||||||
|
|
||||||
**Vertreten durch den Vorstand:**
|
**Vertreten durch den Vorstand:**
|
||||||
Jutta Tellmann, Christoph Meyer-Rohen, Felix Wulfers
|
Felix Wulfers, Christoph Meyer-Rohen, Lina Bürsken
|
||||||
|
|
||||||
### Kontakt
|
### Kontakt
|
||||||
|
|
||||||
- Telefon: +49 4479 939355
|
E-Mail: [info@mv-molbergen.de](mailto:info@mv-molbergen.de)
|
||||||
- E-Mail: [info@mv-molbergen.de](mailto:info@mv-molbergen.de)
|
|
||||||
|
|
||||||
### Sonstiges
|
### Sonstiges
|
||||||
|
|
||||||
|
|||||||
58
layouts/_default/rss.xml
Normal file
58
layouts/_default/rss.xml
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
{{- $pctx := . -}}
|
||||||
|
{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
|
||||||
|
{{- $pages := slice -}}
|
||||||
|
{{- if or $.IsHome $.IsSection -}}
|
||||||
|
{{- $pages = $pctx.RegularPages -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- $pages = $pctx.Pages -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- /* Filter to only include pages from the artikel section */ -}}
|
||||||
|
{{- $pages = where $pages "Section" "artikel" -}}
|
||||||
|
{{- $limit := .Site.Config.Services.RSS.Limit -}}
|
||||||
|
{{- if ge $limit 1 -}}
|
||||||
|
{{- $pages = $pages | first $limit -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
|
||||||
|
<rss version="2.0"
|
||||||
|
xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
|
||||||
|
<link>{{ .Permalink }}</link>
|
||||||
|
<description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<language>{{ site.LanguageCode }}</language>{{ with .Site.Params.Author.email }}
|
||||||
|
<managingEditor>{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Params.Author.email }}
|
||||||
|
<webMaster>{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}</webMaster>{{end}}
|
||||||
|
{{ if .Site.Params.footer.showCopyright | default true -}}
|
||||||
|
<copyright>{{ with replace .Site.Params.copyright "{ year }" now.Year }}{{.}}{{ else }}© {{ now.Format "2006" }} {{ .Site.Params.Author.name }}{{- end }}</copyright>
|
||||||
|
{{- end }}
|
||||||
|
{{ if not .Date.IsZero }}<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
|
||||||
|
{{- with .OutputFormats.Get "RSS" -}}
|
||||||
|
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
|
||||||
|
{{- end -}}
|
||||||
|
{{ if and (.Site.Params.rssnext.feedId) (.Site.Params.rssnext.userId) }}
|
||||||
|
<follow_challenge>
|
||||||
|
<feedId>{{ .Site.Params.rssnext.feedId }}</feedId>
|
||||||
|
<userId>{{ .Site.Params.rssnext.userId }}</userId>
|
||||||
|
</follow_challenge>
|
||||||
|
{{ end }}
|
||||||
|
{{ range $pages }}
|
||||||
|
<item>
|
||||||
|
<title>{{ .Title }}</title>
|
||||||
|
<link>{{ .Permalink }}</link>
|
||||||
|
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
||||||
|
{{ with .Site.Params.Author.email }}<author>{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}</author>{{end}}
|
||||||
|
<guid>{{ .Permalink }}</guid>
|
||||||
|
<description>{{ .Content | html }}</description>
|
||||||
|
{{ range ( where .Site.RegularPages ".RelPermalink" .RelPermalink | first 1 ) }}
|
||||||
|
{{- $images := .Resources.ByType "image" -}}
|
||||||
|
{{- $featured := $images.GetMatch "*feature*" -}}
|
||||||
|
{{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}}
|
||||||
|
{{- with $featured -}}
|
||||||
|
<media:content xmlns:media="http://search.yahoo.com/mrss/" url="{{ $featured.Permalink }}" />
|
||||||
|
{{- end -}}
|
||||||
|
{{ end }}
|
||||||
|
</item>
|
||||||
|
{{ end }}
|
||||||
|
</channel>
|
||||||
|
</rss>
|
||||||
BIN
static/android-chrome-192x192.png
Normal file
BIN
static/android-chrome-192x192.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.0 KiB |
BIN
static/apple-touch-icon.png
Normal file
BIN
static/apple-touch-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.2 KiB |
BIN
static/favicon-16x16.png
Normal file
BIN
static/favicon-16x16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 491 B |
BIN
static/favicon-32x32.png
Normal file
BIN
static/favicon-32x32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.0 KiB |
BIN
static/favicon.ico
Normal file
BIN
static/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
1
static/site.webmanifest
Normal file
1
static/site.webmanifest
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
||||||
Reference in New Issue
Block a user