5e8d9efb7b
CI / test (push) Has been cancelled
iOS Safari caches the apple-touch-icon per origin and ignores byte-level changes on the same URL. Adding a version query forces a refetch on fresh visits without renaming the source files. Buttressed across all standalone Twig templates and the SPA index plus the manifest icons so Chrome desktop also refetches. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
27 lines
1.2 KiB
Twig
27 lines
1.2 KiB
Twig
<!DOCTYPE html>
|
|
<html data-design="{{ app.request.cookies.get('wevisto_design')|default('v1') }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}Welcome!{% endblock %}</title>
|
|
<link rel="icon" type="image/svg+xml" href="/build/favicon.svg?v=20260515-3a">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/build/icons/favicon-32.png?v=20260515-3a">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/build/icons/favicon-16.png?v=20260515-3a">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/build/icons/apple-touch-icon.png?v=20260515-3a">
|
|
{% block stylesheets %}
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
{% endblock %}
|
|
|
|
{% set frankenphpHotReload = app.request.server.get('FRANKENPHP_HOT_RELOAD') %}
|
|
{% if frankenphpHotReload %}
|
|
<meta name="frankenphp-hot-reload:url" content="{{ frankenphpHotReload }}">
|
|
<script src="https://cdn.jsdelivr.net/npm/idiomorph"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/frankenphp-hot-reload/+esm" type="module"></script>
|
|
{% endif %}
|
|
</head>
|
|
<body>
|
|
{% block body %}{% endblock %}
|
|
</body>
|
|
</html>
|