{% extends 'base.html.twig' %}
{% block headerMenuLeft %}
<li class="float-left">
<button class="button-menu-mobile open-left waves-light waves-effect">
<i class="dripicons-menu"></i>
</button>
</li>
{% endblock %}
{% block bodyClass %}fixed-left{% endblock %}
{% block body %}
<!-- Begin page -->
<div id="wrapper">
{% include 'menu.html.twig' with { menuLeft: block('headerMenuLeft')} %}
{% if hideSideMenu is not defined %}
{% include ('admin/menu.html.twig') %}
{% endif %}
<div class="content-page" {% if hideSideMenu is defined %}style="margin-left: 0px;"{% endif %}>
<!-- Start content -->
<div class="content" style="{% block contentCSS %}{% endblock %}">
<div class="container-fluid">
{% block content %}
{% endblock %}
<footer class="footer text-right">
© 2016 - {{"now" | date('Y')}}. All rights reserved.
</footer>
</div>
</div> <!-- container -->
</div> <!-- content -->
</div>
{% endblock %}
{% block modals %}
{# Start of all the modal #}
{# The waiting dialog #}
{% include ('admin/modals/addNewProduct.html.twig') %}
{% include ('admin/modals/previewImage.html.twig') %}
{{parent()}}
{% if company is defined and company.termsAcceptanceDate is defined and company.termsAcceptanceDate is empty %}
{% include ('admin/modals/companyTerms.html.twig') %}
{% endif %}
{% endblock %}