r
{{> partials/sidebar }}The Nodejs Structure of the Evohus Admin Panel is organized for clarity, flexibility, and scalability. Each major layout section — header, sidebar, content, and footer — is structured using clean and semantic markup. This modular setup allows developers to easily customize or replace individual sections without affecting others.
<!DOCTYPE html>
<html lang="en" data-layout="modern" data-theme="default" data-bs-theme="light" data-sidebar-colors="dark" data-sidebar="large" data-topbar-colors="light" data-nav-type="default" dir="ltr" data-colors="default" data-profile-sidebar>
<%- meta %>
<%- css %>
<%- include("../head-css") %>
</head>
<body>
<%- wrapper %>
<%- include("../topbar") %>
<%- include("../sidebar") %>
<%- content %>
</div>
<%- include("../footer") %>
</div>
<%- include("../vendor-scripts") %>
<%- js %>
</body>
</html>