Merge pull request 'posts: add posts logic & parler statement' () from parler into main

Reviewed-on: 
Reviewed-by: teutat3s <teutat3s@noreply.git.pub.solar>
This commit is contained in:
b12f 2025-01-14 19:54:34 +00:00
commit e700fd6baf
Signed by: pub.solar gitea
GPG key ID: F0332B04B7054873
6 changed files with 51 additions and 0 deletions

View file

@ -16,6 +16,17 @@
{{ tagline |> md |> safe }}
</div>
<div class="mi-news">
{{ for item of news }}
<a
class="mi-news--item"
href="{{ item.link }}"
>
{{ item.text |> md |> safe }}
</a>
{{ /for }}
</div>
{{ for card of cards }}
<a
class="mi-card"

View file

@ -5,6 +5,10 @@ layout: homepage.vto
tagline: |
MiOM is a collective from Cologne with the vision of creating affordable space for creative synergies.
news:
- text: Statement regarding the use of our address by Parler
link: ./posts/parler
cards:
- text: the collective
link: ./collective

13
en/posts/parler.md Normal file
View file

@ -0,0 +1,13 @@
---
layout: text.vto
title: Statement regarding the use of our address by Parler
date: 2025-01-14
---
Our association has been made aware by [OpenTermsArchive](https://opentermsarchive.org) that the American company [Parler](https://en.wikipedia.org/wiki/Parler) has listed our creative space as its German address on its website as of this morning. OpenTermsArchive has also published a [press statement](https://opentermsarchive.org/en/memos/parler-opens-address-germany/) about this.
MiOM Kreativraum e.V. has no relationship with Parler. The association has never been in contact with Parler.
Our name and address have since been removed from Parler's website. It is unclear how Parler came to publish our address on their website.
We are currently looking into possible legal measures and could use some help here. We are happy to receive tips and ideas on how to proceed.

View file

@ -4,6 +4,10 @@ layout: homepage.vto
tagline: |
Das MiOM ist ein Kollektiv mit der Vision, bezahlbaren Raum für kreative Synergien zu schaffen.
news:
- text: Statement bezüglich der Benutzung unserer Adresse durch Parler
link: ./posts/parler
cards:
- text: das Kollektiv
link: ./collective

13
posts/parler.md Normal file
View file

@ -0,0 +1,13 @@
---
layout: text.vto
title: Statement bezüglich der Benutzung unserer Adresse durch Parler
date: 2025-01-14
---
Unser Verein wurde durch [OpenTermsArchive](https://opentermsarchive.org) darauf aufmerksam gemacht, dass das amerikanische Unternehmen [Parler](https://de.wikipedia.org/wiki/Parler) seit heute Morgen unseren Kreativraum als seine deutsche Adresse auf seiner Website führt. OpenTermsArchive hat hierzu auch ein [Pressestatement](https://opentermsarchive.org/en/memos/parler-opens-address-germany.de/) veröffentlicht.
Der MiOM Kreativraum e.V. hat keine Beziehung zu Parler. Der Verein stand noch nie in Kontakt mit Parler.
Unser Name und unsere Adresse wurden mittlerweile wieder von der Website entfernt. Wie Parler dazu kam, unsere Adresse auf seiner Website zu veröffentlichen, ist unklar.
Wir schauen aktuell nach möglichen rechtlichen Maßnahmen, und können hier Hilfe gebrauchen. Tipps und Ideen zu möglichem Vorgehen empfangen wir gerne.

View file

@ -430,6 +430,12 @@ h4 {
margin-top: 0;
}
.mi-news {
grid-column: 1 / span 8;
background: var(--background);
padding: 1rem;
}
.mi-card {
background: var(--background);
position: relative;