move pages to /pages and apply formatter
This commit is contained in:
parent
2da0508cfc
commit
57525c6028
|
@ -23,8 +23,8 @@ Wie du deine Änderung veröffentlichst steht in der Sektion Deploy.
|
|||
|
||||
## Eine neue Seite erstellen
|
||||
|
||||
Um eine neue Seite zu erstellen lege eine neue Datei im `markdown-pages` Ordner
|
||||
[hier](https://repos.ctdo.de/-/ide/project/neri/ctdo-hompage/tree/master/-/src/markdown-pages/) an.
|
||||
Um eine neue Seite zu erstellen lege eine neue Datei im `src/pages` Ordner
|
||||
[hier](https://repos.ctdo.de/-/ide/project/neri/ctdo-hompage/tree/master/-/src/pages/) an.
|
||||
Wie die Seite aufgebaut sein muss steht unten in der Sektion Seitenlayout.
|
||||
Wie du deine Änderung veröffentlichst steht in der Sektion Deploy.
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@ module.exports = {
|
|||
{
|
||||
resolve: `gatsby-source-filesystem`,
|
||||
options: {
|
||||
name: `markdown-pages`,
|
||||
path: `${__dirname}/src/markdown-pages`,
|
||||
name: `pages`,
|
||||
path: `${__dirname}/src/pages`,
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
path: "/about"
|
||||
title: "über uns"
|
||||
edit: "about.md"
|
||||
path: '/about/'
|
||||
title: 'über uns'
|
||||
edit: 'about.md'
|
||||
---
|
||||
|
||||
# Wer wir sind
|
|
@ -1,8 +1,9 @@
|
|||
---
|
||||
path: "/datenschutz"
|
||||
title: "datenschutzerklärung"
|
||||
edit: "datenschutz.md"
|
||||
path: '/datenschutz/'
|
||||
title: 'datenschutzerklärung'
|
||||
edit: 'datenschutz.md'
|
||||
---
|
||||
|
||||
import { Address, Phone, Chairperson1, Chairperson2, ChairpersonMail } from '../components/data.js'
|
||||
|
||||
# Datenschutzerklärung
|
||||
|
@ -32,6 +33,7 @@ Ein Teil der Daten wird erhoben, um eine fehlerfreie Bereitstellung der Website
|
|||
#### Welche Rechte haben Sie bezüglich Ihrer Daten?
|
||||
|
||||
Sie haben jederzeit das Recht unentgeltlich Auskunft über Herkunft, Empfänger und Zweck Ihrer gespeicherten personenbezogenen Daten zu erhalten. Sie haben außerdem ein Recht, die Berichtigung, Sperrung oder Löschung dieser Daten zu verlangen. Hierzu sowie zu weiteren Fragen zum Thema Datenschutz können Sie sich jederzeit unter der im Impressum angegebenen Adresse an uns wenden. Des Weiteren steht Ihnen ein Beschwerderecht bei der zuständigen Aufsichtsbehörde zu.
|
||||
|
||||
## 2. Allgemeine Hinweise und Pflichtinformationen
|
||||
|
||||
### Datenschutz
|
||||
|
@ -150,6 +152,7 @@ Part of the data is collected to ensure the proper functioning of the website. O
|
|||
#### What rights do you have regarding your data?
|
||||
|
||||
You always have the right to request information about your stored data, its origin, its recipients, and the purpose of its collection at no charge. You also have the right to request that it be corrected, blocked, or deleted. You can contact us at any time using the address given in the legal notice if you have further questions about the issue of privacy and data protection. You may also, of course, file a complaint with the competent regulatory authorities.
|
||||
|
||||
## 2. General information and mandatory information
|
||||
|
||||
### Data protection
|
||||
|
@ -240,4 +243,3 @@ If you visit one of our pages featuring a Vimeo plugin, a connection to the Vime
|
|||
If you are logged in to your Vimeo account, Vimeo allows you to associate your browsing behavior directly with your personal profile. You can prevent this by logging out of your Vimeo account.
|
||||
|
||||
For more information on how to handle user data, please refer to the Vimeo Privacy Policy at https://vimeo.com/privacy.
|
||||
|
|
@ -1,8 +1,9 @@
|
|||
---
|
||||
path: "/events"
|
||||
title: "events"
|
||||
edit: "events.md"
|
||||
path: '/events/'
|
||||
title: 'events'
|
||||
edit: 'events.md'
|
||||
---
|
||||
|
||||
import NextTopic from "../components/nextTopic.js"
|
||||
|
||||
# Events
|
|
@ -1,12 +1,14 @@
|
|||
---
|
||||
path: "/"
|
||||
title: "home"
|
||||
edit: "home.md"
|
||||
path: '/'
|
||||
title: 'home'
|
||||
edit: 'home.md'
|
||||
---
|
||||
|
||||
import { Link } from "gatsby"
|
||||
import RoomState from "../components/roomState.js"
|
||||
|
||||
<!-- todo: fix image links in prod by using the gatsby component -->
|
||||
|
||||
<img width="100%" alt="Raum 2 mit gemütlichen Sofas" src="/header.jpg"></img>
|
||||
|
||||
# Räume sind <RoomState/>
|
|
@ -1,8 +1,9 @@
|
|||
---
|
||||
path: "/impressum"
|
||||
title: "impressum"
|
||||
edit: "impressum.md"
|
||||
path: '/impressum/'
|
||||
title: 'impressum'
|
||||
edit: 'impressum.md'
|
||||
---
|
||||
|
||||
import {
|
||||
PublicMail,
|
||||
AbuseMail,
|
|
@ -1,8 +1,9 @@
|
|||
---
|
||||
path: "/kontakt"
|
||||
title: "kontakt"
|
||||
edit: "kontakt.md"
|
||||
path: '/kontakt/'
|
||||
title: 'kontakt'
|
||||
edit: 'kontakt.md'
|
||||
---
|
||||
|
||||
import Accordion from "../components/accordion.js"
|
||||
import { PublicMail, MailinglistMail, DonationMail, Address, Phone } from "../components/data.js"
|
||||
|
|
@ -1,8 +1,9 @@
|
|||
---
|
||||
path: "/support"
|
||||
title: "support us"
|
||||
edit: "support.md"
|
||||
path: '/support/'
|
||||
title: 'support us'
|
||||
edit: 'support.md'
|
||||
---
|
||||
|
||||
import { BankAccount } from "../components/data.js"
|
||||
|
||||
# Spenden
|
|
@ -1,8 +1,9 @@
|
|||
---
|
||||
path: "/treff"
|
||||
title: "zeiten & location"
|
||||
edit: "treff.md"
|
||||
path: '/treff/'
|
||||
title: 'zeiten & location'
|
||||
edit: 'treff.md'
|
||||
---
|
||||
|
||||
import RoomState from "../components/roomState.js"
|
||||
import OsmMap from "../components/osmMap.js"
|
||||
import Accordion from "../components/accordion.js"
|
|
@ -1,8 +1,9 @@
|
|||
---
|
||||
path: "/verein"
|
||||
title: "verein"
|
||||
edit: "verein.md"
|
||||
path: '/verein/'
|
||||
title: 'verein'
|
||||
edit: 'verein.md'
|
||||
---
|
||||
|
||||
import { BankAccount } from "../components/data.js"
|
||||
|
||||
# Mitglied werden
|
||||
|
@ -82,4 +83,3 @@ bezeichnen darf.
|
|||
Einen weiteren Meilenstein erreichten wir etwas später:
|
||||
Das Finanzamt stellte uns die Anerkennung der Gemeinnützigkeit in Aussicht,
|
||||
zu der es noch einer Änderung in der Satzung bedurfte.
|
||||
|
|
@ -1,11 +1,11 @@
|
|||
import React, { useEffect } from "react"
|
||||
import { graphql } from "gatsby"
|
||||
import Layout from "../components/layout"
|
||||
import { MDXRenderer } from "gatsby-plugin-mdx"
|
||||
import { MDXProvider } from "@mdx-js/react"
|
||||
import React, { useEffect } from 'react'
|
||||
import { graphql } from 'gatsby'
|
||||
import Layout from '../components/layout'
|
||||
import { MDXRenderer } from 'gatsby-plugin-mdx'
|
||||
import { MDXProvider } from '@mdx-js/react'
|
||||
|
||||
const ide =
|
||||
"https://repos.ctdo.de/-/ide/project/neri/ctdo-homepage/edit/master/-/src/markdown-pages/"
|
||||
'https://repos.ctdo.de/-/ide/project/neri/ctdo-homepage/edit/master/-/src/pages/'
|
||||
|
||||
const MdLeakH1 = props => <h2 {...props}># {props.children}</h2>
|
||||
const MdLeakH2 = props => <h3 {...props}>## {props.children}</h3>
|
||||
|
|
Loading…
Reference in New Issue