14 lines
419 B
HTML
14 lines
419 B
HTML
{{define "page-content"}}
|
|
<h2>Artikel veröffentlichen</h2>
|
|
|
|
<div class="flex flex-col gap-4">
|
|
{{range .}}
|
|
<button class="btn" hx-get="/article/review-unpublished/{{.ID}}" hx-target="#page-content">
|
|
<h1 class="font-bold text-2xl">{{.Title}}</h1>
|
|
<p>{{.Summary}}</p>
|
|
</button>
|
|
{{end}}
|
|
<button class="action-btn" hx-get="/hub" hx-target="#page-content">Zurück</button>
|
|
</div>
|
|
{{end}}
|