Merge pull request #17 from Ocelot-Social-Community/16-flexibe-footer-links

feat: [WIP] 🍰 Flexible Footer Links
This commit is contained in:
Wolfgang Huß 2021-06-03 19:05:45 +02:00 committed by GitHub
commit 16ef30041a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 61 additions and 4 deletions

View File

@ -1,8 +1,13 @@
// this file is duplicated in `backend/src/config/links.js` and `webapp/constants/links.js` and replaced on rebranding // this file is duplicated in `backend/src/config/links.js` and `webapp/constants/links.js` and replaced on rebranding
export default { export default {
ORGANIZATION: 'https://ocelot.social', ORGANIZATION: 'https://ocelot.social',
DONATE: 'https://ocelot-social.herokuapp.com/donations', SUPPORT: 'https://ocelot.social',
IMPRINT: 'https://ocelot-social.herokuapp.com/imprint',
DATA_PRIVACY: 'https://ocelot-social.herokuapp.com/imprint', // on null or empty string internal imprint is used, see 'webapp/locales/html/'
FAQ: 'https://ocelot-social.herokuapp.com/#kontakt', DONATE: 'https://ocelot-social.herokuapp.com/donations', // we use 'ocelot-social.herokuapp.com' at the moment, because redirections of 'ocelot.social' subpages are not working correctly
IMPRINT: 'https://ocelot-social.herokuapp.com/imprint', // we use 'ocelot-social.herokuapp.com' at the moment, because redirections of 'ocelot.social' subpages are not working correctly
TERMS_AND_CONDITIONS: null,
CODE_OF_CONDUCT: null,
DATA_PRIVACY: null,
FAQ: 'https://ocelot.social',
} }

View File

@ -0,0 +1,5 @@
<!-- this file is replaced on rebranding -->
<p>Ich bin der Inhalt vom Verhaltenskodex</p>
Neu gebrandet …

View File

@ -0,0 +1,5 @@
<!-- this file is replaced on rebranding -->
<p>Das hier wäre der Inhalt der Datenschutzbestimmungen</p>
Neu gebrandet …

View File

@ -0,0 +1,5 @@
<!-- this file is replaced on rebranding -->
<p>Hier stehen die FAQs</p>
Neu gebrandet …

View File

@ -0,0 +1,5 @@
<!-- this file is replaced on rebranding -->
<p>Ich bin das Impressum</p>
Neu gebrandet …

View File

@ -0,0 +1,5 @@
<!-- this file is replaced on rebranding -->
<p>Ich bin der Inhalt der Seite "Nutzungsbedingungen"</p>
Neu gebrandet …

View File

@ -0,0 +1,5 @@
<!-- this file is replaced on rebranding -->
<p>I am the content of the code of conduct</p>
Rebranded …

View File

@ -0,0 +1,5 @@
<!-- this file is replaced on rebranding -->
<p>This would be our data privacy section</p>
Rebranded …

View File

@ -0,0 +1,5 @@
<!-- this file is replaced on rebranding -->
<p>Here are the FAQs</p>
Rebranded …

View File

@ -0,0 +1,5 @@
<!-- this file is replaced on rebranding -->
<p>I am the imprint</p>
Rebranded …

View File

@ -0,0 +1,5 @@
<!-- this file is replaced on rebranding -->
<p>I am the content of the page "terms and conditions"<p>
Rebranded …

View File

@ -7,3 +7,4 @@ FROM $APP_IMAGE as branded
# copy public constants into the Docker image to brand it # copy public constants into the Docker image to brand it
COPY branding/static/ static/ COPY branding/static/ static/
COPY branding/constants/ constants/ COPY branding/constants/ constants/
COPY branding/locales/ locales/

View File

@ -7,3 +7,4 @@ FROM $APP_IMAGE as branded
# copy public constants into the Docker image to brand it # copy public constants into the Docker image to brand it
COPY branding/static/ static/ COPY branding/static/ static/
COPY branding/constants/ constants/ COPY branding/constants/ constants/
COPY branding/locales/ locales/