mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2025-12-12 23:35:59 +00:00
Merge pull request #136 from Ocelot-Social-Community/set-default-language-to-first-locale
refactor(other): set first locale in plugin redirect to default locale
This commit is contained in:
commit
0a4ae74187
@ -53,72 +53,72 @@ export default hopeTheme({
|
||||
},
|
||||
],
|
||||
},
|
||||
'/en/': {
|
||||
lang: 'en-US', // this will be set as the lang attribute on <html>
|
||||
title: 'Ocelot.Social',
|
||||
description: 'Ocelot.Social – Free and open source software to create and run your own social network.',
|
||||
copyright: '© by <a href="https://busfaktor.org" target="_blank">busFaktor() e.V.</a> & Authors | <a href="/en/imprint/">Imprint</a> | <a href="/en/privacy-policy/">Privacy Policy</a>',
|
||||
footer: 'Released under the <a class="vt-link link link" href="https://opensource.org/licenses/MIT" target="_blank" rel="noopener noreferrer"><!--[-->MIT License<!--]--><!----></a>.',
|
||||
navbar: [
|
||||
{
|
||||
text: 'Features',
|
||||
link: '/en/features/'
|
||||
},
|
||||
{
|
||||
text: 'Get Started',
|
||||
link: '/en/get-started/'
|
||||
},
|
||||
{
|
||||
text: 'Contribute',
|
||||
link: '/en/contribute/'
|
||||
},
|
||||
{
|
||||
text: 'Learn',
|
||||
link: '/en/learn/' ,
|
||||
},
|
||||
{
|
||||
text: 'Donate',
|
||||
link: '/en/donate/'
|
||||
},
|
||||
{
|
||||
text: 'Contact',
|
||||
link: '/en/contact/'
|
||||
},
|
||||
],
|
||||
},
|
||||
'/fr/': {
|
||||
lang: 'fr-FR',
|
||||
title: 'Ocelot.Social',
|
||||
description: 'Ocelot.Social - Logiciel open source et gratuit pour créer et gérer votre propre réseau social.',
|
||||
copyright: '© par <a href="https://busfaktor.org" target="_blank">busFaktor() e.V.</a> & Auteurs | <a href="/fr/imprint/">Mentions légales</a> | <a href="/fr/privacy-policy/">Protection des données</a>',
|
||||
footer: 'Publié sous la <a class="vt-link link link" href="https://opensource.org/licenses/MIT" target="_blank" rel="noopener noreferrer"><!--[-->licence MIT<!--]--><!----></a>.',
|
||||
navbar: [
|
||||
{
|
||||
text: 'Fonctionnalités',
|
||||
link: '/fr/features/'
|
||||
},
|
||||
{
|
||||
text: 'Entrée',
|
||||
link: '/fr/get-started/'
|
||||
},
|
||||
{
|
||||
text: 'Contribuer',
|
||||
link: '/fr/contribute/'
|
||||
},
|
||||
{
|
||||
text: 'Apprendre',
|
||||
link: '/fr/learn/' ,
|
||||
},
|
||||
{
|
||||
text: 'Donner',
|
||||
link: '/fr/donate/'
|
||||
},
|
||||
{
|
||||
text: 'Contact',
|
||||
link: '/fr/contact/'
|
||||
},
|
||||
],
|
||||
}
|
||||
// '/en/': {
|
||||
// lang: 'en-US', // this will be set as the lang attribute on <html>
|
||||
// title: 'Ocelot.Social',
|
||||
// description: 'Ocelot.Social – Free and open source software to create and run your own social network.',
|
||||
// copyright: '© by <a href="https://busfaktor.org" target="_blank">busFaktor() e.V.</a> & Authors | <a href="/en/imprint/">Imprint</a> | <a href="/en/privacy-policy/">Privacy Policy</a>',
|
||||
// footer: 'Released under the <a class="vt-link link link" href="https://opensource.org/licenses/MIT" target="_blank" rel="noopener noreferrer"><!--[-->MIT License<!--]--><!----></a>.',
|
||||
// navbar: [
|
||||
// {
|
||||
// text: 'Features',
|
||||
// link: '/en/features/'
|
||||
// },
|
||||
// {
|
||||
// text: 'Get Started',
|
||||
// link: '/en/get-started/'
|
||||
// },
|
||||
// {
|
||||
// text: 'Contribute',
|
||||
// link: '/en/contribute/'
|
||||
// },
|
||||
// {
|
||||
// text: 'Learn',
|
||||
// link: '/en/learn/' ,
|
||||
// },
|
||||
// {
|
||||
// text: 'Donate',
|
||||
// link: '/en/donate/'
|
||||
// },
|
||||
// {
|
||||
// text: 'Contact',
|
||||
// link: '/en/contact/'
|
||||
// },
|
||||
// ],
|
||||
// },
|
||||
// '/fr/': {
|
||||
// lang: 'fr-FR',
|
||||
// title: 'Ocelot.Social',
|
||||
// description: 'Ocelot.Social - Logiciel open source et gratuit pour créer et gérer votre propre réseau social.',
|
||||
// copyright: '© par <a href="https://busfaktor.org" target="_blank">busFaktor() e.V.</a> & Auteurs | <a href="/fr/imprint/">Mentions légales</a> | <a href="/fr/privacy-policy/">Protection des données</a>',
|
||||
// footer: 'Publié sous la <a class="vt-link link link" href="https://opensource.org/licenses/MIT" target="_blank" rel="noopener noreferrer"><!--[-->licence MIT<!--]--><!----></a>.',
|
||||
// navbar: [
|
||||
// {
|
||||
// text: 'Fonctionnalités',
|
||||
// link: '/fr/features/'
|
||||
// },
|
||||
// {
|
||||
// text: 'Entrée',
|
||||
// link: '/fr/get-started/'
|
||||
// },
|
||||
// {
|
||||
// text: 'Contribuer',
|
||||
// link: '/fr/contribute/'
|
||||
// },
|
||||
// {
|
||||
// text: 'Apprendre',
|
||||
// link: '/fr/learn/' ,
|
||||
// },
|
||||
// {
|
||||
// text: 'Donner',
|
||||
// link: '/fr/donate/'
|
||||
// },
|
||||
// {
|
||||
// text: 'Contact',
|
||||
// link: '/fr/contact/'
|
||||
// },
|
||||
// ],
|
||||
// }
|
||||
},
|
||||
plugins: {
|
||||
blog: {
|
||||
@ -136,6 +136,12 @@ export default hopeTheme({
|
||||
},
|
||||
redirect: {
|
||||
autoLocale: true,
|
||||
defaultBehavior: 'defaultLocale',
|
||||
defaultLocale: '/de/',
|
||||
localeConfig: {
|
||||
'/de/': ['de-DE', 'en'],
|
||||
},
|
||||
localeFallback: false,
|
||||
},
|
||||
searchPro: {
|
||||
indexContent: true,
|
||||
|
||||
@ -1,75 +0,0 @@
|
||||
---
|
||||
home: true
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Ocelot.Social
|
||||
heroFullScreen: false
|
||||
heroImage: /logo.svg
|
||||
heroText: Free and open-source social network for active citizenship.
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## Benefits
|
||||
|
||||
How is ocelot.social different from other social networks?
|
||||
|
||||
- **Open Source:** The software code of this network is Open Source. This means that the code is public and can be copied, used, modified, enhanced and verified by anyone. You can contribute as a developer or translator to improve and enhance this project
|
||||
- **Not for profit:** Ocelot.social is non-profit, serving the public good. The network is developed and maintained by a non-profit association located in Germany, assisted by open source contributors around the world
|
||||
- **Privacy:** Your data will not be sold to advertisers and no user profiling will be done unless the operator of the network in question explicitly states this in its privacy policy
|
||||
- **Funded by donations:** The ocelot.social software is funded by donations which means that you may or may not give some love back by a donation or by other ways of contributing
|
||||
- **Self-determination:** Independence from the terms of use of the well-known major social networks: The operator of an Ocelot.Social network sets its own terms of use
|
||||
|
||||
<!-- ## Video (link) -->
|
||||
|
||||
## Screenshots
|
||||
|
||||
<!-- We want to make a slider with different screenshots -->
|
||||
|
||||
## Features
|
||||
|
||||
Ocelot.social networks features:
|
||||
|
||||
- User Accounts
|
||||
- User Roles
|
||||
- news feed (Posts)
|
||||
- Filter
|
||||
- posts
|
||||
- as articles
|
||||
- as events
|
||||
- comments
|
||||
- Search
|
||||
- Groups
|
||||
- Map
|
||||
|
||||
[See all features](/en/features)
|
||||
<!-- Button
|
||||
<Button >See all features!</Button>
|
||||
-->
|
||||
|
||||
## Demo
|
||||
|
||||
try out the application under the following link [Ocelot.Social](https://stage.ocelot.social/)
|
||||
<!-- Button to demo page -->
|
||||
|
||||
## Get started
|
||||
|
||||
If you want to install the application on a server or your local machine follow the [link](/en/get-started)
|
||||
<!-- Button to get started page -->
|
||||
|
||||
## Testimonials
|
||||
|
||||
<!-- Heimo (sender.fm), Ulf Tramsen, Lars Ebert (Yunite.me), Jenseblümchen (freilernen.social) -->
|
||||
|
||||
## Donation
|
||||
|
||||
Ocelot.Social is a not-for-profit which can is keep running thanks to your donations. Do you like what we do? Do you think we’re going in the right direction? If so, and you’re able to make a donation, we’d much appreciate it! [Donation Page](/en/donations)
|
||||
<!-- Button to Donation Page -->
|
||||
|
||||
## Contact
|
||||
|
||||
If you want more informations you can join us on [Discord](https://discord.gg/AGPJ7YgC), on GitHub or by email.
|
||||
|
||||
[Contact](/en/contact)
|
||||
<!-- Button to contact page-->
|
||||
@ -1,26 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Contact
|
||||
sidebar: false
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## Developer Association
|
||||
|
||||
busFaktor() e.V.
|
||||
Wolfgang Huß, 2nd chairman
|
||||
Haferstr. 5c
|
||||
86179 Augsburg, Germany
|
||||
|
||||
Phone: +49 173 622 60 91
|
||||
Discord: <https://discord.gg/2b55aHVgpM>
|
||||
|
||||
## Ocelot.Social Project
|
||||
|
||||
Phone: +49 173 622 60 91
|
||||
E-mail: <hello@ocelot.social>
|
||||
Discord: <https://discord.gg/AJSX9DCSUA>
|
||||
@ -1,14 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Contribute
|
||||
sidebar: false
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## XXX
|
||||
|
||||
XXX
|
||||
@ -1,14 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Donate
|
||||
sidebar: true
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## Donate
|
||||
|
||||
XXX
|
||||
@ -1,14 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Features
|
||||
sidebar: false
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## XXX
|
||||
|
||||
XXX
|
||||
@ -1,14 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Get Started
|
||||
sidebar: false
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## XXX
|
||||
|
||||
XXX
|
||||
@ -1,31 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Imprint
|
||||
sidebar: false
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## Responsible for the Operation of this Website
|
||||
|
||||
busFaktor() e.V.
|
||||
Wolfgang Huß, 2nd Chairman
|
||||
Haferstr. 5c
|
||||
86179 Augsburg, Germany
|
||||
|
||||
E-Mail: <vorstand@busfaktor.org>
|
||||
Telefon: +49 173 622 60 91
|
||||
|
||||
More [contact options](/en/contact/)
|
||||
|
||||
## Contentwise Responsible Editor
|
||||
|
||||
Wolfgang Huß
|
||||
Steinburger Straße 38
|
||||
22527 Hamburg, Germany
|
||||
|
||||
E-Mail: <vorstand@busfaktor.org>
|
||||
Telefon: +49 173 622 60 91
|
||||
@ -1,26 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Learn
|
||||
sidebar: true
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
<!-- ## XXX -->
|
||||
|
||||
As a user, operator or developer, you can find more information about *ocelot.social* here.
|
||||
|
||||
### Documentation for Developers
|
||||
|
||||
<https://docs.ocelot.social/>
|
||||
|
||||
### User Guide
|
||||
|
||||
<https://github.com/Ocelot-Social-Community/Ocelot-Social/wiki/en:User-Guide>
|
||||
|
||||
### FAQ
|
||||
|
||||
<https://github.com/Ocelot-Social-Community/Ocelot-Social/wiki/en:FAQ>
|
||||
@ -1,91 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Privacy Policy
|
||||
sidebar: false
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
|
||||
Updated on May 20, 2024
|
||||
|
||||
## Privacy Information
|
||||
|
||||
In the following, we inform you about our handling of your personal data and what rights you have against us in accordance with the EU General Data Protection Regulation (GDPR), which has been in force since 25 May 2018.
|
||||
|
||||
### Responsible Person
|
||||
|
||||
Is responsible for the processing of personal data:
|
||||
|
||||
<!-- markdownlint-disable-next-line no-emphasis-as-heading -->
|
||||
**Martin Döring**
|
||||
|
||||
E-mail: <vorstand@busfaktor.org>
|
||||
|
||||
### Deputy
|
||||
|
||||
<!-- markdownlint-disable-next-line no-emphasis-as-heading -->
|
||||
**Wolfgang Huß**
|
||||
|
||||
E-mail: <vorstand@busfaktor.org>
|
||||
|
||||
### Applications and Services
|
||||
|
||||
When using our services, different types of personal data are processed differently. In the following, we will inform you about the applications and services for which there is processing, which personal data is involved, the purpose of the respective processing, how long the data is stored and much more.
|
||||
|
||||
### Website
|
||||
|
||||
When using our website, different types of personal data are processed in different ways. In the following, we will inform you about the types of processing, which personal data are affected in each case, what the purpose of the respective processing is, how long the data are stored in each case and much more.
|
||||
|
||||
#### Website access
|
||||
|
||||
**Purpose:** We make our website available to the public so that everyone can inform themselves about our association, its activities and offers.
|
||||
|
||||
**Personal Data:** Depending on the browser used and its settings, the following information is transmitted: date and time of access, if applicable source/reference, from which page you access our website, browser used, operating system used, language information, size of the browser window, IP address used.
|
||||
|
||||
**Storage Period:** This data is not stored by us, but only used when you access our web application.
|
||||
|
||||
**Legal Basis:** Our legitimate interest to present our association publicly, according to art. 6 paragraph 1 lit. f) GDPR.
|
||||
|
||||
**Recipient:** Your browser access data can only be viewed by us as the operator and, if applicable, our provider.
|
||||
|
||||
**Third Country Transfer:** The data will not be stored in a third country.
|
||||
|
||||
<!-- #### Session Cookies
|
||||
|
||||
**Purpose:** We use a cookie for navigation on our website
|
||||
|
||||
**Personal Data:** A session cookie, starting with busfaktor
|
||||
|
||||
**Storage Period:** Half an hour after the last access
|
||||
|
||||
**Legal Basis:** Our legitimate interest to present our association publicly, according to art. 6 paragraph 1 lit. f) GDPR.
|
||||
|
||||
**Recipient:** Only you, saved in your browser
|
||||
|
||||
**Forwarding to Third Parties:** None
|
||||
|
||||
**Third Country Transfer:** None -->
|
||||
|
||||
### Your Rights
|
||||
|
||||
Data protection law grants you the following rights with regard to the processing of your personal data, the exact wording of which you can read in the linked articles of the GDPR:
|
||||
|
||||
- Right to information in accordance with [Art. 15 GDPR](https://gdpr-info.eu/art-15-gdpr/)
|
||||
- Right of rectification under [Art. 16 GDPR](https://gdpr-info.eu/art-16-gdpr/)
|
||||
- Right of deletion in accordance with [Art. 17 GDPR](https://gdpr-info.eu/art-17-gdpr/)
|
||||
- Right to restrict processing in accordance with [Art. 18 GDPR](https://gdpr-info.eu/art-18-gdpr/)
|
||||
- Right to information in accordance with [Art. 19 GDPR](https://gdpr-info.eu/art-19-gdpr/)
|
||||
- Right to data transferability according to [Art. 20 GDPR](https://gdpr-info.eu/art-20-gdpr/)
|
||||
- Right to revoke consents granted under [Art. 7 para. 3 GDPR](https://gdpr-info.eu/art-7-gdpr/)
|
||||
- Right of recourse according to [Art. 21 GDPR](https://gdpr-info.eu/art-21-gdpr/)
|
||||
- Right of appeal under [Art. 77 GDPR](https://gdpr-info.eu/art-77-gdpr/)
|
||||
|
||||
Please note that exercising your right to deletion, in particular your registration data, may mean that you can no longer use our services.
|
||||
|
||||
### Actuality of this Privacy Information
|
||||
|
||||
This privacy information can be adapted from time to time to organizational or technical changes and new legal requirements. It is always valid in the current version published here.
|
||||
@ -1,44 +0,0 @@
|
||||
---
|
||||
home: true
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Ocelot.Social
|
||||
heroFullScreen: false
|
||||
heroImage: /logo.svg
|
||||
heroText: Réseau social libre et gratuit pour citoyen actif.
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## Benefits
|
||||
|
||||
XXX
|
||||
|
||||
## Features
|
||||
|
||||
XXX
|
||||
|
||||
## Demo (link)
|
||||
|
||||
XXX
|
||||
|
||||
## Get started (link)
|
||||
|
||||
XXX
|
||||
|
||||
## Video (link)
|
||||
|
||||
XXX
|
||||
|
||||
## testimonials
|
||||
|
||||
XXX
|
||||
|
||||
## Donation
|
||||
|
||||
XXX
|
||||
|
||||
## Contact
|
||||
|
||||
XXX
|
||||
@ -1,26 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Contact
|
||||
sidebar: false
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## Association des développeurs
|
||||
|
||||
busFaktor() e.V.
|
||||
Wolfgang Huß, 2e président
|
||||
Haferstr. 5c
|
||||
86179 Augsbourg, Allemagne
|
||||
|
||||
Téléphone : +49 173 622 60 91
|
||||
Discord : <https://discord.gg/2b55aHVgpM>
|
||||
|
||||
## Projet ocelot.social
|
||||
|
||||
Téléphone : +49 173 622 60 91
|
||||
E-mail : <hello@ocelot.social>
|
||||
Discord : <https://discord.gg/AJSX9DCSUA>
|
||||
@ -1,14 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Contribuer
|
||||
sidebar: false
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## XXX
|
||||
|
||||
XXX
|
||||
@ -1,14 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Donner
|
||||
sidebar: true
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## Donner
|
||||
|
||||
XXX
|
||||
@ -1,14 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Fonctionnalités
|
||||
sidebar: false
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## XXX
|
||||
|
||||
XXX
|
||||
@ -1,14 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Entrée
|
||||
sidebar: false
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## XXX
|
||||
|
||||
XXX
|
||||
@ -1,31 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
# icon: home
|
||||
sidebar: false
|
||||
title: Impressum
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## Responsable de l’exploitation de ce site Web
|
||||
|
||||
busFaktor() e.V.
|
||||
Wolfgang Huß, 2ème Président
|
||||
Haferstr. 5c
|
||||
86179 Augsbourg, Allemagne
|
||||
|
||||
E-Mail: <vorstand@busfaktor.org>
|
||||
Téléphone: +49 173 622 60 91
|
||||
|
||||
Plus [d’options de contact](/fr/contact/)
|
||||
|
||||
## Éditeur responsable du contenu
|
||||
|
||||
Wolfgang Huß
|
||||
Steinburger Straße 38
|
||||
22527 Hambourg, Allemagne
|
||||
|
||||
E-Mail: <vorstand@busfaktor.org>
|
||||
Téléphone: +49 173 622 60 91
|
||||
@ -1,26 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Apprendre
|
||||
sidebar: true
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
<!-- ## XXX -->
|
||||
|
||||
En tant qu’utilisateur, opérateur ou développeur, tu trouveras ici des informations supplémentaires sur *ocelot.social*.
|
||||
|
||||
### Documentation pour les Développeurs
|
||||
|
||||
<https://docs.ocelot.social/>
|
||||
|
||||
### Guide de l’Utilisateur
|
||||
|
||||
<https://github.com/Ocelot-Social-Community/Ocelot-Social/wiki/en:User-Guide>
|
||||
|
||||
### FAQ
|
||||
|
||||
<https://github.com/Ocelot-Social-Community/Ocelot-Social/wiki/en:FAQ>
|
||||
@ -1,14 +0,0 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
icon: home
|
||||
title: Protection des données
|
||||
sidebar: false
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
---
|
||||
## XXX
|
||||
|
||||
XXX
|
||||
Loading…
x
Reference in New Issue
Block a user