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
updates to user and account pages along with fixed fontawesome icons.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
{{ define "partials/sidebar" }}
|
||||
{{ define "partials/app-sidebar" }}
|
||||
<!-- Sidebar -->
|
||||
<ul class="navbar-nav bg-gradient-primary sidebar sidebar-dark accordion" id="accordionSidebar">
|
||||
|
@ -1,4 +1,4 @@
|
||||
{{ define "partials/topbar" }}
|
||||
{{ define "partials/app-topbar" }}
|
||||
<!-- Topbar -->
|
||||
<nav class="navbar navbar-expand navbar-light bg-white topbar mb-4 static-top shadow">
|
||||
|
||||
@ -192,7 +192,7 @@
|
||||
</a>
|
||||
{{ end }}
|
||||
|
||||
<a class="dropdown-item" href="/support">
|
||||
<a class="dropdown-item" href="/support" target="_blank">
|
||||
<i class="fas fa-cogs fa-sm fa-fw mr-2 text-gray-400"></i>
|
||||
Support
|
||||
</a>
|
@ -1,9 +1,9 @@
|
||||
{{ define "partials/page-wrapper" }}
|
||||
{{ define "partials/app-wrapper" }}
|
||||
<!-- ============================================================== -->
|
||||
<!-- Page Wrapper -->
|
||||
<!-- ============================================================== -->
|
||||
<div id="wrapper">
|
||||
{{ template "partials/sidebar" . }}
|
||||
{{ template "partials/app-sidebar" . }}
|
||||
|
||||
<!-- ============================================================== -->
|
||||
<!-- Content Wrapper -->
|
||||
@ -18,7 +18,7 @@
|
||||
<!-- ============================================================== -->
|
||||
<!-- Topbar -->
|
||||
<!-- ============================================================== -->
|
||||
{{ template "partials/topbar" . }}
|
||||
{{ template "partials/app-topbar" . }}
|
||||
<!-- End of Topbar -->
|
||||
|
||||
<!-- ============================================================== -->
|
||||
@ -40,13 +40,13 @@
|
||||
<!-- Footer -->
|
||||
<!-- ============================================================== -->
|
||||
<footer class="sticky-footer bg-white">
|
||||
<div class="container my-auto">
|
||||
<div class="copyright text-center my-auto">
|
||||
<span>
|
||||
© Copyright 2019 Geeks Accelerator<br/>
|
||||
{{ template "partials/buildinfo" . }}
|
||||
</span>
|
||||
<div class="container-fluid">
|
||||
<div class="copyright ">
|
||||
<span>© Copyright 2019 Geeks Accelerator</span>
|
||||
</div>
|
||||
|
||||
{{ template "partials/buildinfo" . }}
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
<!-- End of Footer -->
|
@ -1,5 +1,5 @@
|
||||
{{ define "partials/buildinfo" }}
|
||||
<p style="font-size: 12px;{{if eq ._Service.ENV "prod"}}display: none;{{end}}">
|
||||
<p id="buildinfo" style="{{if eq ._Service.ENV "prod"}}display: none;{{end}}">
|
||||
{{if ne ._Service.BuildInfo.CiCommitTag ""}}
|
||||
Tag: {{ ._Service.BuildInfo.CiCommitRefName }}@{{ ._Service.BuildInfo.CiCommitSha }}<br/>
|
||||
{{else}}
|
||||
|
Reference in New Issue
Block a user