RuslanK

Untitled

May 7th, 2022
1,079
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.10 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Welcome!{% endblock %}</title>
  6.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  7.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  8.         {% block stylesheets %}
  9.             {{ encore_entry_link_tags('app') }}
  10.         {% endblock %}
  11.  
  12.         {% block javascripts %}
  13.             {{ encore_entry_script_tags('app') }}
  14.         {% endblock %}
  15.     </head>
  16.     <body>
  17.         {% form_theme form 'bootstrap_4_layout.html.twig' %}   
  18.    
  19.         {% block body %}           
  20.         <div class="container">
  21.             <div class="row justify-content-start">
  22.                 <div class="col-4">
  23.                   <p><a href="pages/1.html" id="one">1</a></p>
  24.                   <p><a href="pages/1.html" id="two">2</a></p>
  25.                   <p><a href="pages/1.html" id="three">3</a></p>
  26.                 </div>
  27.                
  28.                 <div class="col-4" id="result">
  29.                 </div>
  30.             </div>
  31.         </div>
  32.        
  33.         {% endblock %}
  34.     </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment