Guest User

Untitled

a guest
May 17th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.65 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>{% block title %}{% endblock %}</title>
  6.    
  7.     {% block head_css %}    
  8.       <link href="{{ asset('bundles/msicms/css/admin/menu.css') }}" rel="stylesheet" type="text/css" />
  9.       <link href="{{ asset('bundles/msicms/css/admin/common.css') }}" rel="stylesheet" type="text/css" />
  10.       <link href="{{ asset('bundles/msicms/css/admin/tables.css') }}" rel="stylesheet" type="text/css" />
  11.       <link href="{{ asset('bundles/msicms/css/admin/form.css') }}" rel="stylesheet" type="text/css" />  
  12.     {% endblock %}
  13.    
  14.     {% block head_css_2 %}{% endblock %}    
  15.     {% block head_js %}{% endblock %}  
  16.     {% block head_js_2 %}{% endblock %}
  17.   </head>
  18.   <body>
  19.     <div id="wrapper">
  20.         {% include 'MsiCmsBundle:Default:header.html.twig' %}
  21.         {% include 'MsiCmsBundle:Default:navigation.html.twig' %}                
  22.         {% block sub_action %}{% endblock %}
  23.         <div id="middlepart">
  24.           <div id="maincolumn">
  25.             {% if app.session.flash('success') %}    
  26.                 {% include 'MsiCmsBundle:Default:notification_success.html.twig'  with {'data': app.session.flash('success')}  %}
  27.             {% elseif app.session.flash('notice') %}
  28.                 {% include 'MsiCmsBundle:Default:notification_notice.html.twig'  with {'data': app.session.flash('notice')}  %}                
  29.             {% endif %}
  30.             {% block content %}{% endblock %}            
  31.           </div>
  32.         </div>
  33.     </div>
  34.     {% include 'MsiCmsBundle:Default:footer.html.twig' %}    
  35.     {% block after_js %}{% endblock %}
  36.   </body>
  37. </html>
Add Comment
Please, Sign In to add comment