Nodejs Structure
Overview of the Nodejs structure and layout
This guide provides a comprehensive overview of the Nodejs structure used in the Aquiry admin template. It explains how the layout is organized, the role of each partial, and how components are structured to create a fully responsive and modular dashboard interface.
<!DOCTYPE html>
<html lang="en" dir="ltr" data-bs-theme="light" data-layout="vertical" data-content-width="default" data-sidebar="default" data-topbar="light" data-sidebar-color="light">
<head>
<%- meta %>
<%- css %>
<%- include("../head-css") %>
</head>
<body>
<%- include("../menu") %>
<!-- Begin page -->
<div id="layout-wrapper">
<%- wrapper %>
<%- content %>
</div>
<%- include("../footer") %>
<%- include("../scroll-to-top") %>
</div>
<!-- end main content-->
</div>
<!-- END layout-wrapper -->
<%- include("../right-sidebar") %>
<%- include("../vendor-scripts") %>
<%- js %>
</body>
</html>