You've already forked golang-saas-starter-kit
mirror of
https://github.com/raseels-repos/golang-saas-starter-kit.git
synced 2025-08-10 22:41:25 +02:00
updates to user and account pages along with fixed fontawesome icons.
This commit is contained in:
65
cmd/web-app/templates/partials/app-wrapper.tmpl
Normal file
65
cmd/web-app/templates/partials/app-wrapper.tmpl
Normal file
@@ -0,0 +1,65 @@
|
||||
{{ 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 }}
|
Reference in New Issue
Block a user