Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 

45 Zeilen
1.9 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>{% block title %}Welcome!{% endblock %}</title>
  6. <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
  7. {% block stylesheets %}
  8. {{ encore_entry_link_tags('app') }}
  9. {% endblock %}
  10. {% set _bp = brandPalette() %}
  11. {% if _bp %}
  12. <style>
  13. :root {
  14. --color-primary: {{ _bp.primary }};
  15. --color-primary-dark: {{ _bp.primaryDark }};
  16. --color-primary-light: {{ _bp.primaryLight }};
  17. --color-header-from: {{ _bp.headerFrom }};
  18. --color-header-to: {{ _bp.headerTo }};
  19. --color-bg: {{ _bp.bg }};
  20. --color-primary-rgb: {{ _bp.rgb }};
  21. --header-text: {{ _bp.headerText }};
  22. --header-text-muted: {{ _bp.headerTextMuted }};
  23. --header-overlay: {{ _bp.headerOverlay }};
  24. }
  25. </style>
  26. {% endif %}
  27. {% block javascripts %}
  28. {{ encore_entry_script_tags('app') }}
  29. {% endblock %}
  30. {% set frankenphpHotReload = app.request.server.get('FRANKENPHP_HOT_RELOAD') %}
  31. {% if frankenphpHotReload %}
  32. <meta name="frankenphp-hot-reload:url" content="{{ frankenphpHotReload }}">
  33. <script src="https://cdn.jsdelivr.net/npm/idiomorph"></script>
  34. <script src="https://cdn.jsdelivr.net/npm/frankenphp-hot-reload/+esm" type="module"></script>
  35. {% endif %}
  36. </head>
  37. <body data-theme="{{ app.user is not null ? app.user.theme|default('standard') : 'standard' }}">
  38. {% include '_sections/nav.html.twig' %}
  39. {% block body %}{% endblock %}
  40. </body>
  41. </html>