- Reset templates: clean base.html.twig + new email base template - Remove old templates (account, legal, security, emails, etc.) - Add Caddy service to docker-compose-dev - Add ansible hosts.ini for production deployment - Add .gitea/CODEOWNERS - Clean app.scss Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
343 B
Twig
14 lines
343 B
Twig
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}{% endblock %}</title>
|
|
{% block stylesheets %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block body %}{% endblock %}
|
|
{% block javascripts %}{% endblock %}
|
|
</body>
|
|
</html>
|