Dashtic - Bootstrap Admin & Dashboard Html5 Template

Basic Html Page Structure

General HTML file structure of the Dashtic template src Folder.

Root:html/empty.html

    
		

			@SPK@include("partials/mainhead.html")

		</head>

		<body>

			@SPK@include("partials/switcher.html")
			@SPK@include("partials/loader.html")

			<div class="page">
				@SPK@include("partials/header.html")
				@SPK@include("partials/sidebar.html")

				<!-- Start::app-content -->
				<div class="main-content app-content">
					<div class="container-fluid">

						@SPK@include("partials/page-header.html", {"title": "Empty", "subtitle": 'Pages'})

						<!-- Start::row-1 -->
						<div class="row">

						</div>
						<!--End::row-1 -->

					</div>
				</div>
				<!-- End::app-content -->

				@SPK@include("partials/headersearch_modal.html")
				@SPK@include("partials/footer.html")

			</div>

			@SPK@include("partials/commonjs.html")

			@SPK@include("partials/custom_switcherjs.html")

			<!-- Custom JS -->
			<script src="../assets/js/custom.js"></script>

		</body>

		</html>