saasitone/views/layouts/main.gohtml

37 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-12-03 03:11:01 -08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ .AppName }}{{ if .Title }} | {{ .Title }}{{ end }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2021-12-03 05:49:07 -08:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
2021-12-03 03:11:01 -08:00
</head>
<body>
2021-12-03 05:49:07 -08:00
<nav class="navbar is-dark">
<div class="container">
<div class="navbar-brand">
<a href="{{call .Reverse "home"}}" class="navbar-item">{{.AppName}}</a>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
{{link (call .Reverse "home") "Home" .Path "navbar-item"}}
{{link (call .Reverse "about") "About" .Path "navbar-item"}}
{{link (call .Reverse "contact") "Contact" .Path "navbar-item"}}
</div>
</div>
2021-12-03 03:11:01 -08:00
</div>
2021-12-03 05:49:07 -08:00
</nav>
2021-12-03 03:11:01 -08:00
2021-12-03 05:49:07 -08:00
<section class="section">
<div class="container">
{{- if .Title}}
<h1 class="title">{{.Title}}</h1>
{{- end}}
2021-12-03 03:11:01 -08:00
2021-12-03 05:49:07 -08:00
{{template "messages" .}}
{{template "content" .}}
2021-12-03 03:11:01 -08:00
</div>
2021-12-03 05:49:07 -08:00
</section>
2021-12-03 03:11:01 -08:00
</body>
</html>