cpolis/web/templates/unpublished-articles.html

12 lines
383 B
HTML
Raw Normal View History

2024-03-01 11:30:31 +01:00
{{define "page-content"}}
<div class="flex flex-col gap-4">
{{range .}}
<button class="btn" hx-get="/review-unpublished-article/{{.ID}}/" hx-target="#page-content">
<h1 class="font-bold text-2xl">{{.Title}}</h1>
<p>{{.Description}}</p>
</button>
{{end}}
<button class="btn" hx-get="/hub/" hx-target="#page-content">Zurück</button>
</div>
2024-03-01 11:30:31 +01:00
{{end}}