indiescrobble/templates/scrobble/done.tmpl

20 lines
514 B
Cheetah
Raw Normal View History

{{ define "scrobble/done.tmpl" }}
2022-02-19 22:00:56 +00:00
<!DOCTYPE html>
<html lang="en">
{{ template "partial/head.tmpl" . }}
2022-02-19 22:00:56 +00:00
<body>
{{ template "partial/header.tmpl" . }}
2022-02-19 22:00:56 +00:00
<main>
{{ $scrobbleType := .scrobbleType }}
<p><a href="/">Add A Post</a> &gt; <a href="/scrobble?type={{ .scrobbleType }}">Add {{ .scrobbleTypeName }}</a> &gt; {{.post.MediaItem.DisplayName.String}}</p>
<h3>Post Complete: <a href="{{.post.URL}}">{{.post.URL}}</a></h3>
</main>
{{ template "partial/footer.tmpl" . }}
2022-02-19 22:00:56 +00:00
</body>
</html>
{{end}}