Compare commits

...

2 Commits

Author SHA1 Message Date
joerglohrer bee8ee4861 fix: YAML-Frontmatter für 'Theologie auf TikTok' korrigiert und vervollständigt
- ID & URL: Fehlende ID in commonMetadata ergänzt (basiert auf URL-Slug)
- Bild-Pfad: Relative Bildangabe in commonMetadata zu absoluter URL korrigiert
- Konsistenz: Redundante Felder (summary/description) auf identischen Wortlaut (>-) vereinheitlicht
- Autoren: Metadaten für Konstanze Kemnitzer und Philipp Angelina (ORCID/ROR) vervollständigt
- Schlagworte: Tags und Keywords an kanonische FOERBICO-Liste angepasst
- Klassifikation: KIM-URIs im 'about'-Feld validiert
2026-03-24 16:25:10 +00:00
joerglohrer 52bbeb9ef6 Dateien nach „Orga/oer-community-webseite-orga/comenius-yaml-mcp/data“ hochladen 2026-03-24 15:17:25 +00:00
4 changed files with 422 additions and 5 deletions

View File

@ -0,0 +1,197 @@
# Feldregeln FOERBICO Blog YAML-Frontmatter
# Definiert Struktur, Pflichtfelder, Standardwerte und Ableitungslogik
# für beide Blöcke: commonMetadata (OERSI/AMB) und staticSiteGenerator (Hugo).
# ─────────────────────────────────────────────
# BLOCK 1: commonMetadata
# ─────────────────────────────────────────────
commonMetadata:
context:
feld: "'@context'"
pflicht: true
wert: https://schema.org/
# Immer dieser feste Wert. Anführungszeichen nötig wegen @ in YAML.
creativeWorkStatus:
feld: creativeWorkStatus
pflicht: true
erlaubte_werte: [Published, Draft]
standard: Published
type:
feld: type
pflicht: true
wert: LearningResource
name:
feld: name
pflicht: true
ableitung: identisch mit staticSiteGenerator.title
description:
feld: description
pflicht: true
yaml_stil: ">-" # Fließtext, kein abschließender Zeilenumbruch
ableitung: identisch mit staticSiteGenerator.summary
license:
feld: license
pflicht: true
standard: https://creativecommons.org/licenses/by/4.0/deed.de
optionen:
CC0: https://creativecommons.org/publicdomain/zero/1.0/deed.de
CC-BY: https://creativecommons.org/licenses/by/4.0/deed.de
CC-BY-SA: https://creativecommons.org/licenses/by-sa/4.0/deed.de
CC-BY-NC: https://creativecommons.org/licenses/by-nc/4.0/deed.de
CC-BY-NC-SA: https://creativecommons.org/licenses/by-nc-sa/4.0/deed.de
id:
feld: id
pflicht: true
muster: "https://oer.community/{url}"
# {url} = Wert von staticSiteGenerator.url
creator:
feld: creator
pflicht: true
quelle: data/personen.yaml
# Strukturierte Autorenangaben mit givenName, familyName, type, ggf. id (ORCID) und affiliation
inLanguage:
feld: inLanguage
pflicht: true
standard: [de]
image:
feld: image
pflicht: true
muster: "https://oer.community/{url}/{dateiname}"
# {url} = staticSiteGenerator.url
# {dateiname} = staticSiteGenerator.cover.image
learningResourceType:
feld: learningResourceType
pflicht: true
standard: [https://w3id.org/kim/hcrt/text, https://w3id.org/kim/hcrt/web_page]
optionen:
text: https://w3id.org/kim/hcrt/text
web_page: https://w3id.org/kim/hcrt/web_page
video: https://w3id.org/kim/hcrt/video
audio: https://w3id.org/kim/hcrt/audio
presentation: https://w3id.org/kim/hcrt/presentation
image: https://w3id.org/kim/hcrt/image
worksheet: https://w3id.org/kim/hcrt/worksheet
course: https://w3id.org/kim/hcrt/course
educationalLevel:
feld: educationalLevel
pflicht: true
standard: [https://w3id.org/kim/educationalLevel/level_A]
optionen:
level_A: https://w3id.org/kim/educationalLevel/level_A # Allgemein
level_B: https://w3id.org/kim/educationalLevel/level_B # Berufsbildung
level_C: https://w3id.org/kim/educationalLevel/level_C # Hochschule
datePublished:
feld: datePublished
pflicht: true
format: "'YYYY-MM-DD'" # Anführungszeichen sind Pflicht
keywords:
feld: keywords
pflicht: true
quelle: data/schlagworte.yaml
ableitung: identisch mit staticSiteGenerator.tags
about:
feld: about
pflicht: false
# KIM Hochschulfächersystematik
optionen:
Allgemeine Pädagogik: https://w3id.org/kim/hochschulfaechersystematik/n01
Erziehungswissenschaft: https://w3id.org/kim/hochschulfaechersystematik/n02
Psychologie: https://w3id.org/kim/hochschulfaechersystematik/n03
Medienpädagogik: https://w3id.org/kim/hochschulfaechersystematik/n052
Evangelische Theologie: https://w3id.org/kim/hochschulfaechersystematik/n053
Katholische Theologie: https://w3id.org/kim/hochschulfaechersystematik/n054
Informatik: https://w3id.org/kim/hochschulfaechersystematik/n069
Kommunikationswissenschaft: https://w3id.org/kim/hochschulfaechersystematik/n079
Politikwissenschaft: https://w3id.org/kim/hochschulfaechersystematik/n086
Informationswissenschaft: https://w3id.org/kim/hochschulfaechersystematik/n121
# ─────────────────────────────────────────────
# BLOCK 2: staticSiteGenerator
# ─────────────────────────────────────────────
staticSiteGenerator:
author:
feld: author
pflicht: true
format: "Vorname Nachname"
ableitung: Vor- und Nachname aus commonMetadata.creator
title:
feld: title
pflicht: true
ableitung: identisch mit commonMetadata.name
cover:
feld: cover
pflicht: true
unterfelder:
relative:
pflicht: true
wert: true
# true = Bilddatei liegt im Post-Verzeichnis
# false = externes Bild (URL), dann cover.image = volle URL
image:
pflicht: true
format: "dateiname.ext"
# Nur Dateiname, kein Pfad identisch mit letztem Segment von commonMetadata.image
alt:
pflicht: false
# Bildbeschreibung für Barrierefreiheit, empfohlen
caption:
pflicht: false
# Bildunterschrift, optional
hiddenInSingle:
pflicht: true
standard: true
summary:
feld: summary
pflicht: true
yaml_stil: ">-"
ableitung: identisch mit commonMetadata.description
url:
feld: url
pflicht: true
regeln:
- Nur Kleinbuchstaben
- "Leerzeichen → Bindestrich"
- "ä → ae, ö → oe, ü → ue, ß → ss"
- "Sonderzeichen entfernen: # ? ! : ' ( )"
- Maximal 60 Zeichen
beispiel: "OERcamp #2025 in Hamburg → oercamp-2025-in-hamburg"
tags:
feld: tags
pflicht: true
quelle: data/schlagworte.yaml
ableitung: identisch mit commonMetadata.keywords
# ─────────────────────────────────────────────
# ABLEITUNGSREGELN (Zusammenfassung)
# ─────────────────────────────────────────────
ableitungen:
- commonMetadata.name == staticSiteGenerator.title
- commonMetadata.description == staticSiteGenerator.summary
- commonMetadata.keywords == staticSiteGenerator.tags
- commonMetadata.id == "https://oer.community/" + staticSiteGenerator.url
- commonMetadata.image == "https://oer.community/" + staticSiteGenerator.url + "/" + staticSiteGenerator.cover.image
- commonMetadata.creator[].givenName + " " + familyName == staticSiteGenerator.author[]

View File

@ -0,0 +1,76 @@
# Personenverzeichnis FOERBICO
# Jede Person wird im YAML-Frontmatter unter `creator` (commonMetadata)
# und als "Vorname Nachname" unter `author` (staticSiteGenerator) eingetragen.
# Felder id (ORCID) und affiliation.id (ROR) sind optional, aber empfohlen.
personen:
- givenName: Jörg
familyName: Lohrer
id: https://orcid.org/0000-0002-9282-0406
type: Person
affiliation:
name: Comenius-Institut
id: https://ror.org/025e8aw85
type: Organization
- givenName: Gina
familyName: Buchwald-Chassée
type: Person
affiliation:
name: Comenius-Institut
id: https://ror.org/025e8aw85
type: Organization
- givenName: Ludger
familyName: Sicking
type: Person
affiliation:
name: Comenius-Institut
id: https://ror.org/025e8aw85
type: Organization
- givenName: Jens
familyName: Dechow
id: https://orcid.org/0009-0003-1657-4631
type: Person
affiliation:
name: Comenius-Institut
id: https://ror.org/025e8aw85
type: Organization
- givenName: Laura
familyName: Mößle
id: https://orcid.org/0000-0001-5255-8063
type: Person
affiliation:
name: Johann Wolfgang Goethe-Universität Frankfurt
id: https://ror.org/04cvxnb49
type: Organization
- givenName: Viera
familyName: Pirker
id: https://orcid.org/0000-0002-6971-8905
type: Person
affiliation:
name: Johann Wolfgang Goethe-Universität Frankfurt
id: https://ror.org/04cvxnb49
type: Organization
- givenName: Phillip
familyName: Angelina
id: https://orcid.org/0000-0002-6905-5523
type: Person
affiliation:
name: Friedrich-Alexander-Universität Erlangen-Nürnberg
id: https://ror.org/00f7hpc57
type: Organization
- givenName: Manfred
familyName: Pirner
id: https://orcid.org/0000-0002-6641-4690
type: Person
affiliation:
name: Friedrich-Alexander-Universität Erlangen-Nürnberg
id: https://ror.org/00f7hpc57
type: Organization

View File

@ -0,0 +1,117 @@
# Schlagwort-Glossar FOERBICO
# Kanonische Liste aller gültigen Tags/Keywords.
# Nur diese Schreibweisen verwenden in `keywords` (commonMetadata)
# und identisch in `tags` (staticSiteGenerator).
#
# Änderungen hier dokumentieren: Datum + Begründung als Kommentar.
schlagworte:
# Bildung & Pädagogik
- Didaktik
- Hochschuldidaktik
- Religionspädagogik
- Theologie
- Wissenschaftskommunikation
- dezentral
# OER & Offenheit
- Open Educational Resources (OER)
- Open Educational Practices (OEP)
- OER-Strategie
- OERcamp
- OERinfo
- OERSI
- OE_COM
- Offenheit
- Open Access
- Open Source
# Lizenzen & Recht
- Creative Commons
- Lizenzen
- Bild
- Rechtsfragen
# Community & Vernetzung
- Community
- Vernetzung
- FOERBICO in Kontakt
- Kollaboration
# Veranstaltungen
- Event
- Sommercamp
# Technologie & Tools
- Git
- Markdown
- Metadaten
- interoperabel
- KI
- Tools
- Canva
- TikTok
- YouTube
- Moodle
- Nostr
- Mastodon
- Codeberg
- Social Media
# Themen
- Antisemitismuskritik
- Bibel
- Digitalisierung
- Gamification
- Hochschulen
- Inklusion
- Qualitätskriterien
- Storytelling
- Sustainable Development Goals (SDG)
- Video
# Maschinenlesbare Zusammenführungsregeln (für Prompt-Generator und Prüf-Tool)
zusammenfuehrungen:
- alt: [OER, Open Educational Recourses]
neu: Open Educational Resources (OER)
- alt: [OEP, Open Education, Open Educational Practices, "Open Educational Practices (OEP)"]
neu: Open Educational Practices (OEP)
- alt: [Networking, Netzwerk, Netzwerkbildung, Netzwerke]
neu: Vernetzung
- alt: [Community-Building, Communityaufbau]
neu: Community
- alt: [CC-Lizenzen, Bildlizenzen, Bildrechte]
neu: "Creative Commons + Lizenzen + ggf. Bild"
- alt: [Interoperabilität]
neu: interoperabel
- alt: [Qualitätssicherung]
neu: Qualitätskriterien
- alt: [SDG, Sustainable Developtment Goals, Sustainable Development Goals]
neu: Sustainable Development Goals (SDG)
- alt: [Austausch, Konferenz, Fachtag, GwR, FOERBICO]
neu: "FOERBICO in Kontakt + Event"
- alt: [Dezentrale Bildung]
neu: dezentral
- alt: [Openness]
neu: Offenheit
- alt: [Videos]
neu: Video
- alt: [Wissenschaft]
neu: Wissenschaftskommunikation
- alt: [Kollaboartion]
neu: Kollaboration
gestrichen:
- BMBF
- twillo
- UX Design
- Workflow
- Plattformen
- Professionalisierung
- Third Mission
- Religion und Medien
- Deutsche Bibelgesellschaft
- Katholisches Bibelwerk
- Open
- Öffnetlichkeitsarbeit

View File

@ -1,5 +1,5 @@
--- ---
#commonMetadata: # commonMetadata
'@context': https://schema.org/ '@context': https://schema.org/
creativeWorkStatus: Published creativeWorkStatus: Published
type: LearningResource type: LearningResource
@ -13,6 +13,8 @@ description: >-
diesem Beitrag dokumentieren, welche Möglichkeiten sich dabei für die diesem Beitrag dokumentieren, welche Möglichkeiten sich dabei für die
Theologie und religionsbezogene Bildung über TikTok erschließen. Theologie und religionsbezogene Bildung über TikTok erschließen.
license: https://creativecommons.org/publicdomain/zero/1.0/deed.de license: https://creativecommons.org/publicdomain/zero/1.0/deed.de
# KORRIGIERT: ID aus URL-Slug generiert
id: https://oer.community/theologie-auf-tiktok-religioese-kommunikation-im-digitalen-raum
creator: creator:
- givenName: Jörg - givenName: Jörg
familyName: Lohrer familyName: Lohrer
@ -22,6 +24,21 @@ creator:
name: Comenius-Institut name: Comenius-Institut
id: https://ror.org/025e8aw85 id: https://ror.org/025e8aw85
type: Organization type: Organization
- givenName: Phillip
familyName: Angelina
id: https://orcid.org/0000-0002-6905-5523
type: Person
affiliation:
name: Friedrich-Alexander-Universität Erlangen-Nürnberg
id: https://ror.org/00f7hpc57
type: Organization
- givenName: Gina
familyName: Buchwald-Chassée
type: Person
affiliation:
name: Comenius-Institut
id: https://ror.org/025e8aw85
type: Organization
- givenName: Konstanze - givenName: Konstanze
familyName: Kemnitzer familyName: Kemnitzer
id: https://orcid.org/0000-0002-1919-8411 id: https://orcid.org/0000-0002-1919-8411
@ -36,23 +53,33 @@ about:
- https://w3id.org/kim/hochschulfaechersystematik/n02 - https://w3id.org/kim/hochschulfaechersystematik/n02
- https://w3id.org/kim/hochschulfaechersystematik/n052 - https://w3id.org/kim/hochschulfaechersystematik/n052
- https://w3id.org/kim/hochschulfaechersystematik/n053 - https://w3id.org/kim/hochschulfaechersystematik/n053
- https://w3id.org/kim/hochschulfaechersystematik/n287 image: https://oer.community/theologie-auf-tiktok-religioese-kommunikation-im-digitalen-raum/kemnitzer-tiktok.png
image: kemnitzer-tiktok.png
learningResourceType: learningResourceType:
- https://w3id.org/kim/hcrt/text - https://w3id.org/kim/hcrt/text
- https://w3id.org/kim/hcrt/web_page
educationalLevel: educationalLevel:
- https://w3id.org/kim/educationalLevel/level_A - https://w3id.org/kim/educationalLevel/level_A
datePublished: '2024-09-18' datePublished: '2024-09-18'
#staticSiteGenerator: keywords:
- TikTok
- Tools
- Wissenschaftskommunikation
- Social Media
- Theologie
# staticSiteGenerator
author: author:
- Jörg Lohrer - Jörg Lohrer
- Phillip Angelina
- Gina Buchwald-Chassée
- Konstanze Kemnitzer - Konstanze Kemnitzer
title: 'Theologie auf TikTok: Religiöse Kommunikation im digitalen Raum' title: 'Theologie auf TikTok: Religiöse Kommunikation im digitalen Raum'
cover: cover:
relative: true relative: true
image: kemnitzer-tiktok.png image: kemnitzer-tiktok.png
alt: 'Prof. Konstanze Kemnitzer erklärt Theologie auf TikTok'
hiddenInSingle: true hiddenInSingle: true
summary: | summary: >-
Religiöse Themen auf TikTok? Was zunächst widersprüchlich erscheint, ist für Religiöse Themen auf TikTok? Was zunächst widersprüchlich erscheint, ist für
Konstanze Kemnitzer, Professorin für Praktische Theologie, gelebte Realität. Konstanze Kemnitzer, Professorin für Praktische Theologie, gelebte Realität.
Sie nutzt seit Mai 2022 ihren Kanal auf TikTok nicht nur für ihre Forschung, Sie nutzt seit Mai 2022 ihren Kanal auf TikTok nicht nur für ihre Forschung,