2024-10-23 05:25:30 +00:00
|
|
|
{{ define "title" }} Guestbooks {{ end }}
|
|
|
|
{{ define "main" }}
|
2024-11-11 19:55:01 +00:00
|
|
|
<h1>Guestbooks run by {{ .User.Username }}</h1>
|
2024-12-15 17:23:53 +00:00
|
|
|
<div>
|
|
|
|
<button hx-get="/guestbooks/create" hx-target="closest div">New Guestbook</button>
|
|
|
|
</div>
|
|
|
|
<ul id="guestbooks" hx-get="/guestbooks" hx-trigger="newGuestbook from:body" hx-swap="outerHTML">
|
2024-10-23 05:25:30 +00:00
|
|
|
{{ range .Guestbooks }}
|
2024-11-11 19:55:01 +00:00
|
|
|
<li><a href="/guestbooks/{{ shortIdToSlug .ShortId }}">{{ with .SiteUrl }}{{ . }}{{ else }}Untitled{{ end }}</a></li>
|
2024-10-23 05:25:30 +00:00
|
|
|
{{ else }}
|
|
|
|
<p>No Guestbooks yet</p>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|