templates/website/base-print.html.twig line 1

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>The Infinite Moment Gazette</title>
  7.     <link rel="stylesheet" href="{{ asset('css/custom.css') }}" />
  8.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.7.0/css/all.min.css" integrity="sha512-gRH0EcIcYBFkQTnbpO8k0WlsD20x5VzjhOA1Og8+ZUAhcMUCvd+APD35FJw3GzHAP3e+mP28YcDJxVr745loHw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
  9. </head>
  10. <body class="{% if page is defined and page.templateCountry == 'US' %}letter-type{% endif %}">
  11. {% block body %}
  12. {% endblock %}
  13. <script src="{{ asset('js/ipod.js') }}"></script>
  14. {% if editable %}
  15. <script src="{{ asset('js/android.js') }}"></script>
  16. {% endif %}
  17. </body>
  18. </html>