templates/cookies.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block stylesheets %}
  3.     <style>
  4.         body {
  5.             background-image: url("images/1492617746.jpg");
  6.         }
  7.     </style>
  8. {% endblock %}
  9. {% block body %}
  10.     <div class="container">
  11.         <div class="row">
  12.             <div class="col-12">
  13.                 <h2>Cookies</h2>
  14.                 <hr>
  15.                 <p>
  16.                     {{ 'We use cookies to analyze the access to our website.'|transedit|raw }}
  17.                 </p>
  18.                 <table class="table table-borderless">
  19.                     <tr>
  20.                         <td>2x {{ 'Cookie by DISH Digital Solutions GmbH, Consent (required)'|transedit|raw }}</td>
  21.                         <td class="text-right">{{ 'required'|transedit|raw }}</td>
  22.                     </tr>
  23.                     <tr>
  24.                         <td>1x {{ 'Cookie by DISH Digital Solutions GmbH, PHP Session (required)'|transedit|raw }}</td>
  25.                         <td class="text-right">{{ 'required'|transedit|raw }}</td>
  26.                     </tr>
  27.                     <tr>
  28.                         <td>1x {{ 'Cookie by DISH Digital Solutions GmbH, Language (required)'|transedit|raw }}</td>
  29.                         <td class="text-right">{{ 'required'|transedit|raw }}</td>
  30.                     </tr>
  31.                     <tr>
  32.                         <td>1x {{ 'Cookie by DISH Digital Solutions GmbH, Usage analysis (optional)'|transedit|raw }}</td>
  33.                         <td class="text-right">
  34.                             <a id="consent-hd-1" class="d-none" href="javascript:void(0)">{{ 'Allow cookie'|transedit|raw }}</a>
  35.                             <a id="consent-hd-0" class="d-none" href="javascript:void(0)">{{ 'Do not allow cookie'|transedit|raw }}</a>
  36.                         </td>
  37.                     </tr>
  38.                 </table>
  39.             </div>
  40.         </div>
  41.     </div>
  42. {% endblock %}