You've already forked golang-saas-starter-kit
mirror of
https://github.com/raseels-repos/golang-saas-starter-kit.git
synced 2025-08-08 22:36:41 +02:00
65 lines
2.7 KiB
Cheetah
65 lines
2.7 KiB
Cheetah
{{ define "partials/app-wrapper" }}
|
|
<!-- ============================================================== -->
|
|
<!-- Page Wrapper -->
|
|
<!-- ============================================================== -->
|
|
<div id="wrapper">
|
|
{{ template "partials/app-sidebar" . }}
|
|
|
|
<!-- ============================================================== -->
|
|
<!-- Content Wrapper -->
|
|
<!-- ============================================================== -->
|
|
<div id="content-wrapper" class="d-flex flex-column">
|
|
|
|
<!-- ============================================================== -->
|
|
<!-- Main Content -->
|
|
<!-- ============================================================== -->
|
|
<div id="content">
|
|
|
|
<!-- ============================================================== -->
|
|
<!-- Topbar -->
|
|
<!-- ============================================================== -->
|
|
{{ template "partials/app-topbar" . }}
|
|
<!-- End of Topbar -->
|
|
|
|
<!-- ============================================================== -->
|
|
<!-- Page Content -->
|
|
<!-- ============================================================== -->
|
|
<div class="container-fluid" id="page-content">
|
|
|
|
{{ template "app-flashes" . }}
|
|
{{ template "validation-error" . }}
|
|
|
|
{{ template "content" . }}
|
|
</div>
|
|
<!-- End Page Content -->
|
|
|
|
</div>
|
|
<!-- End of Main Content -->
|
|
|
|
<!-- ============================================================== -->
|
|
<!-- Footer -->
|
|
<!-- ============================================================== -->
|
|
<footer class="sticky-footer bg-white">
|
|
<div class="container-fluid">
|
|
<div class="copyright ">
|
|
<span>© Copyright 2019 Geeks Accelerator</span>
|
|
</div>
|
|
|
|
{{ template "partials/buildinfo" . }}
|
|
|
|
</div>
|
|
</footer>
|
|
<!-- End of Footer -->
|
|
|
|
</div>
|
|
<!-- End of Content Wrapper -->
|
|
|
|
</div>
|
|
<!-- End of Page Wrapper -->
|
|
|
|
<!-- Scroll to Top Button-->
|
|
<a class="scroll-to-top rounded" href="#page-top">
|
|
<i class="fas fa-angle-up"></i>
|
|
</a>
|
|
|
|
{{ end }} |