cpolis/web/templates/current-articles.html

11 lines
275 B
HTML
Raw Permalink Normal View History

2024-03-28 07:00:37 +01:00
{{define "page-content"}}
{{range .}}
<div>
<h1>{{.Title}}</h1>
<p>{{.Description}}</p>
</div>
{{end}}
<button hx-get="/publish-issue/" hx-target="#page-content">Ausgabe publizieren</button>
<button hx-get="/hub/" hx-target="#page-content">Abbrechen</button>
{{end}}