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
17 lines
894 B
Cheetah
17 lines
894 B
Cheetah
{{ define "partials/site-topbar" }}
|
|
<!-- Topbar -->
|
|
<nav class="navbar navbar-dark bg-primary topbar navbar-fixed-top shadow" style="position: fixed; right: 0; left: 0; z-index: 1030;">
|
|
<a class="my-0 mr-md-auto navbar-brand" href="/">
|
|
<img src="{{ SiteAssetUrl "/images/saas-stater-kit-logo-350x100.png"}}" height="30" alt="SaaS Starter Kit">
|
|
</a>
|
|
<nav class="my-2 my-md-0 mr-md-3">
|
|
<a class="p-2 text-white" href="/">Home</a>
|
|
<a class="p-2 text-white" href="/pricing">Pricing</a>
|
|
<a class="p-2 text-white" href="/support">Support</a>
|
|
<a class="p-2 text-white" href="/api">API</a>
|
|
<a class="p-2 text-white" href="/user/login"><i class="far fa-user"></i> Login</a>
|
|
</nav>
|
|
<a class="btn btn-purple" href="/signup">Sign up</a>
|
|
</nav>
|
|
<!-- End of Topbar -->
|
|
{{ end }} |