2026-03-04 21:52:29 +01:00
|
|
|
<!DOCTYPE html>
|
Add application source code, configs and assets
- Controllers, Entity, Repository, Services, Twig extensions
- Templates (account, emails, home, legal, security, unsubscribe)
- Symfony config updates (bundles, security, framework, services)
- Vite + Bun setup with PostCSS
- Caddy config, CLAUDE.md, README
- Update .gitignore (node_modules, .idea, cert)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-18 20:16:01 +01:00
|
|
|
<html lang="fr">
|
2026-03-18 20:23:16 +01:00
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
|
|
{% block stylesheets %}{% endblock %}
|
2026-03-18 21:35:36 +01:00
|
|
|
{% block javascripts %}
|
|
|
|
|
{{ vite_asset('app.js') }}
|
|
|
|
|
{% endblock %}
|
2026-03-18 20:23:16 +01:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
|
</body>
|
2026-03-04 21:52:29 +01:00
|
|
|
</html>
|