14 lines
		
	
	
		
			313 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			313 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{define "page-content"}}
 | 
						|
<div>
 | 
						|
    {{range .}}
 | 
						|
    <div>
 | 
						|
        <h1>{{.Title}}</h1>
 | 
						|
        <p>{{.Description}}</p>
 | 
						|
    </div>
 | 
						|
    {{end}}
 | 
						|
</div>
 | 
						|
 | 
						|
<button hx-get="/publish-issue/" hx-target="#page-content">Ausgabe publizieren</button>
 | 
						|
<button hx-get="/hub/" hx-target="#page-content">Abbrechen</button>
 | 
						|
{{end}}
 |