templates/website/base.html.twig line 1

  1. {# templates/base.html.twig #}
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.     <meta charset="UTF-8"/>
  6.     <meta name="viewport" content="width=device-width, initial-scale=1"/>
  7.     <title>Vrshikyans — International Tests</title>
  8.     <meta name="description"
  9.           content="A cinematic, minimal space to prepare for TOEFL, SAT, IELTS, and more. Beautiful focus. One simple path to start."/>
  10.     <link rel="preconnect" href="https://fonts.googleapis.com">
  11.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  12.     <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800;900&display=swap" rel="stylesheet">
  13.     <link rel="icon" href="students/Vrshikyan_logo.ico"/>
  14.     <meta name="color-scheme" content="dark light">
  15.     {% block stylesheets %}
  16.         <link rel="stylesheet" href="{{ asset('css/main.css') }}">
  17.     {% endblock %}
  18. </head>
  19. <body>
  20. {% block header %}
  21.     {% include('@web/parts/header.html.twig') %}
  22. {% endblock %}
  23. {% block body %}
  24.     <div id="content">
  25.         {% block content %}{% endblock %}
  26.     </div>
  27. {% endblock %}
  28. {% block footer %}
  29.     {% include('@web/parts/footer.html.twig') %}
  30. {% endblock %}
  31. {% block javascripts %}
  32.     <script src="{{ asset('js/main.js') }}"></script>
  33. {% endblock %}
  34. </body>
  35. </html>