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
Merge branch 'issue16/web-app-signup' of gitlab.com:geeks-accelerator/oss/saas-starter-kit into issue16/web-app-signup
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
{{ define "partials/buildinfo" }}
|
||||
<p style="{{if eq ._Service.ENV "prod"}}display: none;{{end}}">
|
||||
<p style="font-size: 12px;{{if eq ._Service.ENV "prod"}}display: none;{{end}}">
|
||||
{{if ne ._Service.BuildInfo.CiCommitTag ""}}
|
||||
Tag: {{ ._Service.BuildInfo.CiCommitRefName }}@{{ ._Service.BuildInfo.CiCommitSha }}<br/>
|
||||
{{else}}
|
||||
|
@ -43,7 +43,7 @@
|
||||
<div class="container my-auto">
|
||||
<div class="copyright text-center my-auto">
|
||||
<span>
|
||||
Copyright © Geeks Accelerator 2019<br/>
|
||||
© Copyright 2019 Geeks Accelerator<br/>
|
||||
{{ template "partials/buildinfo" . }}
|
||||
</span>
|
||||
</div>
|
||||
|
29
cmd/web-app/templates/partials/site-topbar.tmpl
Normal file
29
cmd/web-app/templates/partials/site-topbar.tmpl
Normal file
@ -0,0 +1,29 @@
|
||||
{{ define "partials/site-topbar" }}
|
||||
<!-- Topbar -->
|
||||
<nav class="navbar navbar-expand navbar-dark bg-primary topbar mb-4 static-top shadow">
|
||||
|
||||
|
||||
<a class="navbar-brand" href="#">Navbar</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav justify-content-center" style="justify-content: center!important;float:right;">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/features">Features</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/support">Support</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/api">API</a>
|
||||
</li>
|
||||
</div>
|
||||
|
||||
</nav>
|
||||
<!-- End of Topbar -->
|
||||
{{ end }}
|
Reference in New Issue
Block a user