In between commit development coporate design for flock.town

This commit is contained in:
2025-02-19 20:46:14 +01:00
parent fce9c1a72d
commit fd5c10b103
26 changed files with 222 additions and 83 deletions

View File

@@ -0,0 +1,6 @@
# Nginx Homepage Role
This Ansible role configures an Nginx server to serve a static homepage. It handles domain configuration, SSL certificate retrieval with Let's Encrypt.
## Author Information
This role was created in 2023 by [Kevin Veen Birkenbach](https://www.veen.world/).

View File

@@ -0,0 +1,2 @@
dependencies:
- nginx-serve-html

View File

@@ -0,0 +1,5 @@
---
- name: copy imprint.html
template:
src: "imprint.html.j2"
dest: "{{nginx.directories.html}}imprint.html"

View File

@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Imprint</title>
</head>
<body>
<h1>Imprint</h1>
<h2>Information in accordance with § 5 TMG</h2>
<p>
<strong>{{ person.name }}</strong><br>
{{ person.description.subtitel }}<br>
<br>
<strong>Address:</strong><br>
{{ person.address.street }}<br>
{{ person.address.postal_code }} {{ person.address.city }}<br>
{{ person.address.country }}
</p>
<h2>Contact</h2>
<p>
Telephone: {{ person.contact.phone }}<br>
Email: <a href="mailto:{{ person.contact.email }}">{{ person.contact.email }}</a>
</p>
<h2>Editorial Responsibility</h2>
<p>
{{ person.legal.editorial_responsible }}
</p>
<h2>Source Code</h2>
<p>
Code repository available at: <a href="{{ person.legal.source_code }}">{{ person.legal.source_code }}</a>
</p>
<h2>Consumer Dispute Resolution / Universal Arbitration Board</h2>
<p>
Federal Universal Arbitration Board<br>
Center for Arbitration e.V.<br>
Straßburger Straße 8<br>
77694 Kehl am Rhein
</p>
</body>
</html>