15 lines
		
	
	
		
			533 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			533 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "title" }} Guestbooks  {{ end }}
 | |
| {{ define "main" }}
 | |
| <h1>Guestbooks run by {{ .User.Username }}</h1>
 | |
| <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">
 | |
|     {{ range .Guestbooks }}
 | |
|     <li><a href="/guestbooks/{{ shortIdToSlug .ShortId }}">{{ with .SiteUrl }}{{ . }}{{ else }}Untitled{{ end }}</a></li>
 | |
|     {{ else }}
 | |
|     <p>No Guestbooks yet</p>
 | |
|     {{ end }}
 | |
| </ul>
 | |
| {{ end }}
 |