wiki/templates/view.html

27 lines
717 B
HTML
Raw Normal View History

2018-11-24 12:34:51 +00:00
{{ define "content" }}
<h1 class="title is-1">{{ .Title }}</h1>
<div class="content">
{{ .Content }}
</div>
{{ end }}
{{ define "navbar" }}
{{ if $.Session.LoggedIn }}
<a href="/edit/{{ .Name }}" class="navbar-item">Edit</a>
<a href="/history/{{ .Name }}" class="navbar-item">History</a>
2019-02-18 19:47:31 +00:00
<a href="/recent/" class="navbar-item">Recent Changes</a>
2018-11-24 12:34:51 +00:00
<a href="/auth/logout" class="navbar-item">Logout</a>
<span class="navbar-item"><b>{{ $.Session.Me }}</b></span>
{{ else }}
<a href="/auth/login" class="navbar-item">Login</a>
{{ end }}
{{ end }}
{{ define "content_head" }}
<style>
.edit {
color: red;
}
</style>
{{ end }}