<!DOCTYPE html>
<html lang="en">

<head>
  <%- include('../partials/head.ejs') %>
  <%- defineContent('pageStyleSection') %>
  <%- style %>
</head>

<body class="hold-transition sidebar-mini layout-fixed">
  <div class="wrapper" style="overflow-x: hidden;">
    
    <%- include('../partials/header.ejs') %>
    
    <%- include('../partials/sidebar.ejs') %>

    <!-- Content Wrapper -->
    <div class="content-wrapper">
      <section class="content">
        <%- body %>
      </section>
    </div>

    <%- include('../partials/footer.ejs') %>

  </div>

  <%- include('../partials/required_scripts.ejs') %>
  <%- include('../partials/alerts.ejs') %>

  <%- defineContent('pageScriptSection') %>
  <%- script %>

</body>
</html>