templates/app/about.html.twig line 1

  1. {% extends 'app/index.html.twig' %} {% block title %} {% trans %} About us {%
  2. endtrans %} {% endblock %} {% block content %}
  3. <style>
  4.   body {
  5.     margin: 30; /* Reset default margin */
  6.   }
  7.   iframe {
  8.     display: block; /* iframes are inline by default */
  9.     background: #000;
  10.     border: none; /* Reset default border */
  11.     height: 100vh; /* Viewport-relative units */
  12.     width: 100vw;
  13.   }
  14. </style>
  15. <iframe
  16.   src="https://blog.erawdha-dz.com/"
  17.   height="100%"
  18.   width="100%"
  19.   frameborder="0"
  20.   >Your browser doesnot support iframes<a href="https://blog.erawdha-dz.com/">
  21.     click here to view the page directly.
  22.   </a></iframe
  23. >
  24. {% endblock %}