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>
|
2026-03-18 21:59:22 +01:00
|
|
|
{% block meta %}
|
|
|
|
|
<meta name="description" content="{% block description %}E-Ticket - Plateforme de vente de tickets evenementiels pour associations{% endblock %}">
|
|
|
|
|
{% endblock %}
|
|
|
|
|
<script type="application/ld+json">
|
|
|
|
|
{
|
|
|
|
|
"@context": "https://schema.org",
|
|
|
|
|
"@type": "Organization",
|
|
|
|
|
"name": "E-Ticket",
|
|
|
|
|
"url": "https://ticket.e-cosplay.fr",
|
|
|
|
|
"logo": "https://ticket.e-cosplay.fr/logo.png",
|
|
|
|
|
"email": "contact@e-cosplay.fr",
|
|
|
|
|
"telephone": "+33679348802",
|
|
|
|
|
"address": {
|
|
|
|
|
"@type": "PostalAddress",
|
|
|
|
|
"streetAddress": "42 rue de Saint-Quentin",
|
|
|
|
|
"addressLocality": "Beautor",
|
|
|
|
|
"postalCode": "02800",
|
|
|
|
|
"addressCountry": "FR"
|
|
|
|
|
},
|
|
|
|
|
"sameAs": [
|
|
|
|
|
"https://www.facebook.com/assocationecosplay",
|
|
|
|
|
"https://www.e-cosplay.fr"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<script type="application/ld+json">
|
|
|
|
|
{
|
|
|
|
|
"@context": "https://schema.org",
|
|
|
|
|
"@type": "WebSite",
|
|
|
|
|
"name": "E-Ticket",
|
|
|
|
|
"url": "https://ticket.e-cosplay.fr",
|
|
|
|
|
"potentialAction": {
|
|
|
|
|
"@type": "SearchAction",
|
|
|
|
|
"target": {
|
|
|
|
|
"@type": "EntryPoint",
|
|
|
|
|
"urlTemplate": "https://ticket.e-cosplay.fr/search?q={search_term_string}"
|
|
|
|
|
},
|
|
|
|
|
"query-input": "required name=search_term_string"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
{% if breadcrumbs is defined and breadcrumbs is not empty %}
|
|
|
|
|
<script type="application/ld+json">
|
|
|
|
|
{
|
|
|
|
|
"@context": "https://schema.org",
|
|
|
|
|
"@type": "BreadcrumbList",
|
|
|
|
|
"itemListElement": [
|
|
|
|
|
{% for breadcrumb in breadcrumbs %}
|
|
|
|
|
{
|
|
|
|
|
"@type": "ListItem",
|
|
|
|
|
"position": {{ loop.index }},
|
|
|
|
|
"name": "{{ breadcrumb.name }}",
|
|
|
|
|
"item": "{{ breadcrumb.url }}"
|
|
|
|
|
}{% if not loop.last %},{% endif %}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
{% endif %}
|
2026-03-18 20:23:16 +01:00
|
|
|
{% 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>
|