This HTML structure uses @@include to load modular partials such as the head, menu, footer, and scripts etc... These includes are processed via the Gulp file include plugin, enabling a maintainable and scalable layout system with reusable HTML blocks across the project.
@@include('./partials/html.html')
<head>
@@include("./partials/title-meta.html", {"title": "Starter Page"})
@@include('./partials/head-css.html')
</head>
<body>
<!-- Begin page -->
<div class="wrapper">
@@include('./partials/menu.html')
<!-- ============================================================== -->
<!-- Start Main Content -->
<!-- ============================================================== -->
<div class="content-page">
<div class="container-fluid">
@@include("./partials/page-title.html", {"subtitle": "Pages", "title":"Starter"})
</div>
<!-- container -->
@@include('./partials/footer.html')
</div>
<!-- ============================================================== -->
<!-- End of Main Content -->
<!-- ============================================================== -->
</div>
<!-- END wrapper -->
@@include('./partials/customizer.html')
@@include('./partials/footer-scripts.html')
</body>
</html>