EMAIL_TEMPLATE/app/templates/base.html
Patsy dec4fbe68d
Some checks failed
CI/CD Pipeline / test (push) Has been cancelled
Phase 1 done
2026-08-07 16:46:44 +02:00

25 lines
721 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Café Bach Email Generator{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<header class="site-header">
<h1>☕ Café Bach Email Generator</h1>
<p class="subtitle">Generate beautiful HTML invitation emails</p>
</header>
<main class="container">
{% block content %}{% endblock %}
</main>
<footer class="site-footer">
<p>© 2024 Café Bach - Aidshilfe</p>
</footer>
{% block scripts %}{% endblock %}
</body>
</html>