saasitone/templates/layouts/main.gohtml

44 lines
1.6 KiB
Plaintext
Raw Normal View History

2021-12-03 03:11:01 -08:00
<!DOCTYPE html>
<html lang="en" style="height:100%;">
2021-12-03 12:41:40 -08:00
<head>
{{template "metatags" .}}
{{template "css" .}}
2021-12-03 18:47:12 -08:00
{{template "js" .}}
2021-12-03 12:41:40 -08:00
</head>
<body class="has-background-light" style="min-height:100%;">
2021-12-03 12:41:40 -08:00
<nav class="navbar is-dark">
2021-12-22 18:51:18 -08:00
<div class="container" hx-boost="true">
2021-12-03 12:41:40 -08:00
<div class="navbar-brand">
<a href="{{call .ToURL "home"}}" class="navbar-item">{{.AppName}}</a>
2021-12-03 12:41:40 -08:00
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
{{link (call .ToURL "home") "Home" .Path "navbar-item"}}
{{link (call .ToURL "about") "About" .Path "navbar-item"}}
{{link (call .ToURL "contact") "Contact" .Path "navbar-item"}}
2021-12-03 12:41:40 -08:00
{{- if .IsAuth}}
{{link (call .ToURL "logout") "Logout" .Path "navbar-item"}}
2021-12-03 12:41:40 -08:00
{{- else}}
{{link (call .ToURL "login") "Login" .Path "navbar-item"}}
2021-12-03 12:41:40 -08:00
{{- end}}
</div>
2021-12-03 05:49:07 -08:00
</div>
</div>
2021-12-03 12:41:40 -08:00
</nav>
2021-12-03 03:11:01 -08:00
2021-12-03 12:41:40 -08:00
<section class="section">
<div class="container">
<div class="box">
{{- if .Title}}
<h1 class="title">{{.Title}}</h1>
{{- end}}
2021-12-03 03:11:01 -08:00
{{template "messages" .}}
{{template "content" .}}
</div>
2021-12-03 12:41:40 -08:00
</div>
</section>
2021-12-23 16:29:12 -08:00
{{template "footer"}}
2021-12-03 12:41:40 -08:00
</body>
2021-12-03 03:11:01 -08:00
</html>