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