personal-site/templates/layouts/main.gohtml
2021-12-23 20:58:49 -05:00

44 lines
No EOL
1.6 KiB
Text

<!DOCTYPE html>
<html lang="en" style="height:100%;">
<head>
{{template "metatags" .}}
{{template "css" .}}
{{template "js" .}}
</head>
<body class="has-background-light" style="min-height:100%;">
<nav class="navbar is-dark">
<div class="container" hx-boost="true">
<div class="navbar-brand">
<a href="{{call .ToURL "home"}}" class="navbar-item">{{.AppName}}</a>
</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"}}
{{- if .IsAuth}}
{{link (call .ToURL "logout") "Logout" .Path "navbar-item"}}
{{- else}}
{{link (call .ToURL "login") "Login" .Path "navbar-item"}}
{{- end}}
</div>
</div>
</div>
</nav>
<section class="section">
<div class="container">
<div class="box">
{{- if .Title}}
<h1 class="title">{{.Title}}</h1>
{{- end}}
{{template "messages" .}}
{{template "content" .}}
</div>
</div>
</section>
{{template "footer" .}}
</body>
</html>