cpolis/web/templates/unpublished-articles.html

14 lines
419 B
HTML
Raw Normal View History

2024-03-01 11:30:31 +01:00
{{define "page-content"}}
2024-09-28 12:17:03 +02:00
<h2>Artikel veröffentlichen</h2>
2024-04-07 18:57:03 +02:00
<div class="flex flex-col gap-4">
{{range .}}
2024-08-30 15:42:53 +02:00
<button class="btn" hx-get="/article/review-unpublished/{{.ID}}" hx-target="#page-content">
<h1 class="font-bold text-2xl">{{.Title}}</h1>
2024-10-27 07:20:23 +01:00
<p>{{.Summary}}</p>
</button>
{{end}}
<button class="action-btn" hx-get="/hub" hx-target="#page-content">Zurück</button>
</div>
2024-03-01 11:30:31 +01:00
{{end}}