tclip/cmd/tclipd/tmpl/listpaste.html

12 lines
441 B
HTML
Raw Normal View History

{{template "header" .}}
2023-08-22 17:43:17 +01:00
<ul class="list-disc ml-5">
{{range .Pastes}}
2023-08-22 17:43:17 +01:00
<li><a class="font-semibold underline text-gray-900 hover:text-gray-500" href="/paste/{{.ID}}">{{.Filename}}</a> - {{.CreatedAt}} - {{.PasterDisplayName}}</li>
{{end}}
</ul>
<p>{{if .Prev}}<a href="/paste/list?page={{.Prev}}">Prev</a> - {{end}} Page {{.Page}} {{if .Next}} - <a href="/paste/list?page={{.Next}}">Next</a>{{end}}</p>
{{template "footer" .}}