centralise contact details
This commit is contained in:
parent
5daa0a1bc2
commit
1650f188af
|
@ -0,0 +1,66 @@
|
||||||
|
import React from "react"
|
||||||
|
|
||||||
|
// helper
|
||||||
|
const text = text => {
|
||||||
|
return (
|
||||||
|
<p>
|
||||||
|
{text.split("\n").map((line, key) => {
|
||||||
|
return (
|
||||||
|
<span key={key}>
|
||||||
|
{line}
|
||||||
|
<br />
|
||||||
|
</span>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</p>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const mail = (mail, name) => {
|
||||||
|
const text = name ? name : mail
|
||||||
|
return <a href={`mailto:${mail}`}>{text}</a>
|
||||||
|
}
|
||||||
|
|
||||||
|
// all the data
|
||||||
|
const PublicMail = () => mail("presse@chaostreff-dortmund.de")
|
||||||
|
const AbuseMail = () => mail("abuse@chaostreff-dortmund.de")
|
||||||
|
const WebmasterMail = () => mail("webmaster@chaostreff-dortmund.de")
|
||||||
|
const PostmasterMail = () => mail("postmaster@chaostreff-dortmund.de")
|
||||||
|
const ChairpersonMail = () => mail("vorstand@chaostreff-dortmund.de")
|
||||||
|
const MailinglistMail = () => mail("discuss@lists.chaostreff-dortmund.de")
|
||||||
|
const DonationMail = () => mail("spenden@chaostreff-dortmund.de)")
|
||||||
|
const Address = () =>
|
||||||
|
text(
|
||||||
|
`Chaostreff Dortmund e.V.
|
||||||
|
Braunschweiger Str. 22
|
||||||
|
44145 Dortmund
|
||||||
|
Deutschland`
|
||||||
|
)
|
||||||
|
const Phone = () => "+49 (0)231 8 404 777"
|
||||||
|
const Fax = () => "+49 (0)231 8 404 779"
|
||||||
|
const BankAccount = () =>
|
||||||
|
text(
|
||||||
|
`Empfänger: Chaostreff Dortmund e.V.
|
||||||
|
IBAN: DE19 4306 0967 4009 3686 00
|
||||||
|
BIC: GENODEM1GLS`
|
||||||
|
)
|
||||||
|
const Chairperson1 = () => "Tim Windelschmidt (1. Vorsitzender)"
|
||||||
|
const Chairperson2 = () => "Stefan Hausschild (2. Vorsitzender)"
|
||||||
|
const Chairperson3 = () => "Jan Münch (Kassenwart)"
|
||||||
|
|
||||||
|
export {
|
||||||
|
PublicMail,
|
||||||
|
AbuseMail,
|
||||||
|
WebmasterMail,
|
||||||
|
PostmasterMail,
|
||||||
|
ChairpersonMail,
|
||||||
|
MailinglistMail,
|
||||||
|
DonationMail,
|
||||||
|
Address,
|
||||||
|
Phone,
|
||||||
|
Fax,
|
||||||
|
BankAccount,
|
||||||
|
Chairperson1,
|
||||||
|
Chairperson2,
|
||||||
|
Chairperson3,
|
||||||
|
}
|
|
@ -3,6 +3,7 @@ path: "/datenschutz"
|
||||||
title: "datenschutzerklärung"
|
title: "datenschutzerklärung"
|
||||||
edit: "datenschutz.mdx"
|
edit: "datenschutz.mdx"
|
||||||
---
|
---
|
||||||
|
import { Address, Phone, Chairperson1, Chairperson2, ChairpersonMail } from '../components/data.js'
|
||||||
|
|
||||||
# Datenschutzerklärung
|
# Datenschutzerklärung
|
||||||
|
|
||||||
|
@ -45,18 +46,17 @@ Wir weisen darauf hin, dass die Datenübertragung im Internet (z.B. bei der Komm
|
||||||
|
|
||||||
Die verantwortliche Stelle für die Datenverarbeitung auf dieser Website ist:
|
Die verantwortliche Stelle für die Datenverarbeitung auf dieser Website ist:
|
||||||
|
|
||||||
Chaostreff Dortmund e.V.
|
<Address/>
|
||||||
Braunschweiger Str. 22
|
|
||||||
44145 Dortmund
|
|
||||||
Deutschland
|
|
||||||
|
|
||||||
Vertretungsberechtigter Vorstand
|
Vertretungsberechtigter Vorstand
|
||||||
|
|
||||||
Tim Windelschmidt (1. Vorsitzender)
|
<p>
|
||||||
Stefan Hauschild (2. Vorsitzender)
|
<Chairperson1/><br/>
|
||||||
|
<Chairperson2/>
|
||||||
|
</p>
|
||||||
|
|
||||||
Telefon: +49 231 8 404 777
|
Telefon: <Phone/>
|
||||||
E-Mail: [vorstand@chaostreff-dortmund.de](mailto:vorstand@chaostreff-dortmund.de)
|
E-Mail: <ChairpersonMail/>
|
||||||
|
|
||||||
Verantwortliche Stelle ist die natürliche oder juristische Person, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten (z.B. Namen, E-Mail-Adressen o. Ä.) entscheidet.
|
Verantwortliche Stelle ist die natürliche oder juristische Person, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten (z.B. Namen, E-Mail-Adressen o. Ä.) entscheidet.
|
||||||
|
|
||||||
|
@ -164,20 +164,17 @@ Please note that data transmitted via the internet (e.g. via email communication
|
||||||
|
|
||||||
The party responsible for processing data on this website is:
|
The party responsible for processing data on this website is:
|
||||||
|
|
||||||
Chaostreff Dortmund e.V.
|
<Address/>
|
||||||
Braunschweiger Str. 22
|
|
||||||
44145 Dortmund
|
|
||||||
Deutschland
|
|
||||||
|
|
||||||
Vertretungsberechtigter Vorstand
|
Vertretungsberechtigter Vorstand
|
||||||
|
|
||||||
Tim Windelschmidt (1. Vorsitzender)
|
<p>
|
||||||
Stefan Hauschild (2. Vorsitzender)
|
<Chairperson1/><br/>
|
||||||
|
<Chairperson2/>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
Telephone: <Phone/>
|
||||||
|
Email: <ChairpersonMail/>
|
||||||
Telephone: +49 231 8 404 777
|
|
||||||
Email: [vorstand@chaostreff-dortmund.de](mailto:vorstand@chaostreff-dortmund.de)
|
|
||||||
|
|
||||||
The responsible party is the natural or legal person who alone or jointly with others decides on the purposes and means of processing personal data (names, email addresses, etc.).
|
The responsible party is the natural or legal person who alone or jointly with others decides on the purposes and means of processing personal data (names, email addresses, etc.).
|
||||||
|
|
||||||
|
|
|
@ -3,46 +3,47 @@ path: "/impressum"
|
||||||
title: "impressum"
|
title: "impressum"
|
||||||
edit: "impressum.mdx"
|
edit: "impressum.mdx"
|
||||||
---
|
---
|
||||||
|
import {
|
||||||
|
PublicMail,
|
||||||
|
AbuseMail,
|
||||||
|
WebmasterMail,
|
||||||
|
PostmasterMail,
|
||||||
|
Address,
|
||||||
|
Phone,
|
||||||
|
Fax,
|
||||||
|
BankAccount,
|
||||||
|
Chairperson1,
|
||||||
|
Chairperson2,
|
||||||
|
Chairperson3
|
||||||
|
} from "../components/data.js"
|
||||||
|
|
||||||
# Impressum
|
# Impressum
|
||||||
|
|
||||||
## Postanschrift
|
## Postanschrift
|
||||||
|
|
||||||
Chaostreff Dortmund e.V.
|
<Address/>
|
||||||
Braunschweiger Str. 22
|
|
||||||
44145 Dortmund
|
|
||||||
Deutschland
|
|
||||||
|
|
||||||
Vertretungsberechtigter Vorstand
|
Vertretungsberechtigter Vorstand
|
||||||
|
|
||||||
- Tim Windelschmidt (1. Vorsitzender)
|
- <Chairperson1/>
|
||||||
- Stefan Hauschild (2. Vorsitzender)
|
- <Chairperson2/>
|
||||||
- Jan Münch (Kassenwart)
|
- <Chairperson3/>
|
||||||
|
|
||||||
## E-Mail
|
## E-Mail
|
||||||
|
|
||||||
- Presseanfragen bitte per E-Mail an unsere
|
- Presseanfragen bitte per E-Mail an unsere Pressestelle <PublicMail/>
|
||||||
[Pressestelle](mailto:presse@chaostreff-dortmund.de)
|
- Netz-Missbrauch Meldungen an die abuse-addresse <AbuseMail/>
|
||||||
- Netz-Missbrauch Meldungen an die
|
- Anfragen bezüglich inhaltlicher Gestaltung bitte per E-Mail an den Webmaster <WebmasterMail/>
|
||||||
[abuse-addresse](mailto:abuse@chaostreff-dortmund.de)
|
- Technischer Kontakt: <PostmasterMail/>
|
||||||
- Anfragen bezüglich inhaltlicher Gestaltung bitte per E-Mail an den
|
|
||||||
[Webmaster](mailto:webmaster@chaostreff-dortmund.de)
|
|
||||||
- Technischer Kontakt:
|
|
||||||
[postmaster@chaostreff-dortmund.de](mailto:postmaster@chaostreff-dortmund.de)
|
|
||||||
|
|
||||||
## Telefon
|
## Telefon
|
||||||
|
|
||||||
- Chaos-Raum (Di+Do ab ca 19Uhr): +49 (0)231 8 404 777
|
- Chaos-Raum (Di+Do ab ca 19Uhr): <Phone/>
|
||||||
- Fax: +49 (0)231 8 404 779
|
- Fax: <Fax/>
|
||||||
|
|
||||||
## Kontodaten
|
## Kontodaten
|
||||||
|
|
||||||
Empfänger: Chaostreff Dortmund
|
<BankAccount/>
|
||||||
IBAN: DE19 4306 0967 4009 3686 00
|
|
||||||
BIC: GENODEM1GLS
|
|
||||||
Konto-Nr.: 4009 368 600
|
|
||||||
BLZ: 430 609 67
|
|
||||||
Bank: GLS-Bank
|
|
||||||
|
|
||||||
## Logo
|
## Logo
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ title: "kontakt"
|
||||||
edit: "kontakt.mdx"
|
edit: "kontakt.mdx"
|
||||||
---
|
---
|
||||||
import Accordion from "../components/accordion.js"
|
import Accordion from "../components/accordion.js"
|
||||||
|
import { PublicMail, MailinglistMail, DonationMail, Address, Phone } from "../components/data.js"
|
||||||
|
|
||||||
# Ich möchte
|
# Ich möchte
|
||||||
|
|
||||||
|
@ -70,12 +71,11 @@ Sonst erreichen dich die Antworten möglicherweise nicht).
|
||||||
Wenn du dich zum Chaostreff gesellen möchtest,
|
Wenn du dich zum Chaostreff gesellen möchtest,
|
||||||
trägst du dich am besten auf der Liste ein.
|
trägst du dich am besten auf der Liste ein.
|
||||||
|
|
||||||
Unsere Mailinglist ist unter
|
Unsere Mailinglist ist unter <MailinglistMail/>,
|
||||||
[discuss@lists.chaostreff-dortmund.de](mailto:discuss@lists.chaostreff-dortmund.de),
|
|
||||||
diese ist auch unsere öffentliche Mailingliste.
|
diese ist auch unsere öffentliche Mailingliste.
|
||||||
|
|
||||||
Presse: [presse@chaostreff-dortmund.de](mailto:presse@chaostreff-dortmund.de)
|
Presse: <PublicMail/>
|
||||||
Spenden: [spenden@chaostreff-dortmund.de](mailto:spenden@chaostreff-dortmund.de)
|
Spenden: <DonationMail/>
|
||||||
|
|
||||||
## Subscriben/Unsubscriben auf die Mailingliste
|
## Subscriben/Unsubscriben auf die Mailingliste
|
||||||
|
|
||||||
|
@ -141,13 +141,9 @@ nach bestem Wissen und Gewissen, zu unterstützen.
|
||||||
Wenn du eher auf Voice-Communication stehst
|
Wenn du eher auf Voice-Communication stehst
|
||||||
(oder einfach wissen willst, ob jemand im Raum ist),
|
(oder einfach wissen willst, ob jemand im Raum ist),
|
||||||
kannst du uns auch anrufen:
|
kannst du uns auch anrufen:
|
||||||
Es klingelt im Raum, wenn man **+49 231 8404777** wählt.
|
Es klingelt im Raum, wenn man **<Phone/>** wählt.
|
||||||
</Accordion>
|
</Accordion>
|
||||||
|
|
||||||
<Accordion title="euch Totholz zuschicken (einen Brief)">
|
<Accordion title="euch Totholz zuschicken (einen Brief)">
|
||||||
|
<Address/>
|
||||||
Chaostreff Dortmund e.V.
|
|
||||||
Braunschweiger Str. 22
|
|
||||||
44145 Dortmund
|
|
||||||
Deutschland
|
|
||||||
</Accordion>
|
</Accordion>
|
||||||
|
|
|
@ -3,6 +3,7 @@ path: "/verein"
|
||||||
title: "verein"
|
title: "verein"
|
||||||
edit: "verein.mdx"
|
edit: "verein.mdx"
|
||||||
---
|
---
|
||||||
|
import { BankAccount } from "../components/data.js"
|
||||||
|
|
||||||
# Verein
|
# Verein
|
||||||
|
|
||||||
|
@ -106,9 +107,7 @@ am liebsten natürlich wenn sie regelmäßig ist. ;)
|
||||||
|
|
||||||
## Gerne, wo soll ich unterschreiben?
|
## Gerne, wo soll ich unterschreiben?
|
||||||
|
|
||||||
Empfänger: Chaostreff Dortmund e.V.
|
<BankAccount/>
|
||||||
IBAN: DE19 4306 0967 4009 3686 00
|
|
||||||
BIC: GENODEM1GLS
|
|
||||||
|
|
||||||
Der Chaostreff Dortmund ist vom Finanzamt als gemeinnützig anerkannt und
|
Der Chaostreff Dortmund ist vom Finanzamt als gemeinnützig anerkannt und
|
||||||
deshalb dürfen wir Spendenbescheinigungen ausstellen.
|
deshalb dürfen wir Spendenbescheinigungen ausstellen.
|
||||||
|
|
Loading…
Reference in New Issue