templates/exchange.html.twig line 1

Open in your IDE?
  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>{% block title %}Exchange{% endblock %}</title>
  7.     <link href="https://fonts.googleapis.com/css?family=Lato:100,400" rel="stylesheet">
  8.     <link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
  9.     <link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet">
  10.     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
  11.     <link rel="stylesheet" href="/bundles/portal{{ asset('build/exchange.css') }}">
  12.     <link rel="stylesheet" href="/bundles/portal{{ asset('build/exchange-media.css') }}">
  13.     {% block stylesheets %}{% endblock %}
  14.     {% block headjs %}{%  endblock %}
  15.     <link rel="icon" type="image/x-icon" href="https://access-program.org/crm/themes/SuiteP/images/sugar_icon.ico" />
  16.     <script async type="module" type="text/javascript">
  17.         import { trackPageView } from '/assets/components/Analytics/GoogleAnalytics.js';
  18.         trackPageView('exchanges');
  19.     </script>
  20. </head>
  21. <body>
  22. <noscript><meta HTTP-EQUIV="refresh" content=0;url="/cookie-js-error/js"></noscript>
  23. {% set currentPath = path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')) %}
  24. {% block body %}
  25. {% endblock %}
  26. <script src="/node_modules/jquery/dist/jquery.min.js"></script>
  27. <script src = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  28. <script type='text/javascript'>
  29.     $( document ).ready(function() {
  30.         if(navigator.cookieEnabled == false){
  31.             window.location.replace("/cookie-js-error/cookie");
  32.         }
  33.     });
  34. </script>
  35. {% block javascripts %}
  36. {% endblock %}
  37. </body>
  38. </html>