saasitone/templates/layouts/main.gohtml

40 lines
1.4 KiB
Plaintext
Raw Normal View History

2021-12-03 03:11:01 -08:00
<!DOCTYPE html>
<html lang="en">
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>
<nav class="navbar is-dark">
<div class="container">
<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">
2021-12-11 13:06:28 -08:00
{{- if .Title}}
<h1 class="title">{{.Title}}</h1>
{{- end}}
2021-12-03 03:11:01 -08:00
2021-12-11 13:06:28 -08:00
{{template "messages" .}}
{{template "content" .}}
2021-12-03 12:41:40 -08:00
</div>
</section>
</body>
2021-12-03 03:11:01 -08:00
</html>