templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>{% block title %}The Great Escape 2017{% endblock %}</title>
  5.     <meta charset="utf-8">
  6.     {% block stylesheets %}
  7.     <style type="text/css">
  8.     @media all {
  9.         html, table {
  10.             /* Angaben zum Seiten-Layout */
  11.             display: block;
  12.             font-family: courier, verdana, monospace;
  13.             font-size: 14px;
  14.             white-space: normal;
  15.             margin: 0 0 1em 0;
  16.             padding: 0;
  17.         }
  18.         .grey {
  19.             background-color: #F0F0F0;
  20.         }
  21.         .band {
  22.             padding-left: 1em;
  23.         }
  24.         a {
  25.             color: #404040;
  26.             text-decoration: none;
  27.         }
  28.         .copy {
  29.             cursor: copy;
  30.         }
  31.         form {
  32.             white-space: pre;
  33.         }
  34.         .info {
  35.             cursor: help;
  36.         }
  37.         .link {
  38.             font-weight: bold;
  39.         }
  40.         a:hover {
  41.             text-decoration: underline;
  42.         }
  43.         .odd {
  44.             background-color: #F8F8F8;
  45.         }
  46.     }
  47.     @media print {
  48.         html, table {
  49.             font-size: 14pt;
  50.             white-space: nowrap;
  51.         }
  52.         body {
  53.             margin-top: 0px;
  54.             -webkit-print-color-adjust:exact;
  55.         }
  56.         form, .noprint {
  57.             display:none;
  58.         }
  59.         a {
  60.             color: black;
  61.             text-decoration: none;
  62.         }
  63.     }
  64.     </style>
  65.     {% endblock %}
  66. </head>
  67. <body>
  68.     {% block body %}
  69.     {% endblock %}
  70.     {% block javascripts %}{% endblock %}
  71. </body>
  72. </html>