owl-blogs/render/templates/views/entry.tmpl

59 lines
1.4 KiB
Cheetah
Raw Normal View History

2023-07-13 19:20:00 +00:00
{{define "title"}}{{.Entry.Title}}{{end}}
2023-07-08 12:51:56 +00:00
{{define "main"}}
2023-07-13 19:20:00 +00:00
<div class="h-entry">
<hgroup>
{{if .Entry.Title}}
<h1 class="p-name">{{.Entry.Title}}</h1>
{{end}}
<small>
<a class="u-url" href="">#</a>
Published:
<time class="dt-published" datetime="{{.Entry.PublishedAt}}">
{{.Entry.PublishedAt}}
</time>
{{ if .Author.Name }}
by
<a class="p-author h-card" href="{{.Author.FullUrl}}">
{{ if .Author.AvatarUrl }}
<img class="u-photo u-logo" style="height: 1em;" src="{{ .Author.AvatarUrl }}" alt="{{ .Author.Config.Title }}" />
{{ end }}
{{.Author.Name}}
</a>
{{ end }}
</small>
</hgroup>
2023-07-09 17:51:49 +00:00
2023-07-25 19:37:26 +00:00
<div class="e-content">
{{.Entry.Content}}
</div>
2023-07-09 17:51:49 +00:00
2023-07-13 19:20:00 +00:00
</div>
2023-07-09 17:51:49 +00:00
2023-07-25 19:31:03 +00:00
{{ if .LoggedIn }}
<br>
<br>
<br>
2023-07-25 19:49:09 +00:00
<h3>Actions</h3>
<div class="grid">
<a href="/editor/edit/{{.Entry.ID}}/" role="button" class="secondary outline">Edit</a>
</div>
<br>
<hr>
<br>
<form method="post" action="/editor/delete/{{.Entry.ID}}/" class="grid">
<label for="confirm">
Confirm deletion
<input type="checkbox" name="confirm" id="confirm" required />
</label>
<input type="submit" class="secondary outline" value="Delete" />
</form>
2023-07-25 19:31:03 +00:00
{{ end }}
2023-07-08 12:51:56 +00:00
{{end}}