Implemented the python draft

This commit is contained in:
2025-01-08 14:59:36 +01:00
parent f962dbb31c
commit 8f96346a6b
29 changed files with 350 additions and 86 deletions

View File

@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<head>
<title>General Terms and Conditions</title>
<style>
body {font-family: Arial, sans-serif; line-height: 1.6;}
h1, h2 {color: #333;}
.container {width: 80%; margin: 0 auto; padding: 20px;}
</style>
</head>
<body>
<div class="container">
<h1>General Terms and Conditions</h1>
<h2>1. Scope of Services</h2>
<p>Kevin Veen-Birkenbach, operating under the business name "Beratungs- und Coachingdienstleistungen," provides various services including consulting, coaching, educational services, freelance assignments, and project-based work.</p>
<h2>2. Payment Terms</h2>
<ul>
<li>Payment is due upon booking any service.</li>
<li>In case of cancellation more than 30 days before the scheduled service, the client is entitled to a full refund.</li>
<li>If cancellation occurs less than 30 days but more than 14 days before the service, 50% of the total fee will be retained.</li>
<li>For cancellations less than 14 days prior to the service, 100% of the total fee will be retained.</li>
<li>If the service is cancelled by Kevin Veen-Birkenbach for any reason, the client is entitled to a full refund.</li>
</ul>
<h2>3. Contact Information</h2>
<p>Kevin Veen-Birkenbach<br>
Beratungs- und Coachingdienstleistungen<br>
Afrikanische Straße 43, 13351 Berlin, Germany<br>
Phone: +491781798023<br>
Email: <a href="mailto:kevin@veen.world">kevin@veen.world</a></p>
<h2>4. Tax Identification</h2>
<p>VAT ID: 23/569/00564</p>
<h2>5. Amendments and Validity</h2>
<p>These terms and conditions are subject to change. The version valid at the time of booking will apply.</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,40 @@
<html>
<header>
<title>Impressum</title>
<meta charset="utf-8" >
</header>
<body>
<h1>Impressum</h1>
<h2>Angaben gem&auml;&szlig; &sect; 5 TMG</h2>
<p>Kevin Veen-Birkenbach<br />
Beratungs- und Coachingdienstleistungen<br />
Afrikanische Stra&szlig;e 43<br />
13351 Berlin</p>
<h2>Kontakt</h2>
<p>Telefon: +491781798023<br />
E-Mail: kevin@veen.world</p>
<h2>Umsatzsteuer-ID</h2>
<p>Umsatzsteuer-Identifikationsnummer gem&auml;&szlig; &sect; 27 a Umsatzsteuergesetz:<br />
23/569/00564</p>
<h2>Angaben zur Berufs&shy;haftpflicht&shy;versicherung</h2>
<p><strong>Name und Sitz des Versicherers:</strong><br />
Markel Insurance SE<br />
Sophienstr. 26<br />
80333 M&uuml;nchen<br />
Registergericht: Amtsgericht M&uuml;nchen<br />
Handelsregisternummer: HRB 233618</p>
<p><strong>Geltungsraum der Versicherung:</strong><br />Weltweit</p>
<h2>Redaktionell verantwortlich</h2>
<p>Kevin Veen-Birkenbach</p>
<h2>Verbraucher&shy;streit&shy;beilegung/Universal&shy;schlichtungs&shy;stelle</h2>
<p>Universalschlichtungsstelle des Bundes<br>
Zentrums für Schlichtung e.V.<br>
Straßburger Straße 8<br>
77694 Kehl am Rhein</p>
</body>

View File

@@ -0,0 +1,23 @@
{% extends "base.html" %}
{% block content %}
<div class="row">
{% for card in cards %}
{% include "card.html.j2" %}
{% endfor %}
</div>
<div class="row">
<div class="col">
<h3>Networks</h3>
<ul>
{% for network in networks %}
<li>
<a href="{{ network.link }}">
<i class="{{ network.icon }}"></i> {{ network.name }}
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
{% endblock %}