diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-11 01:25:59 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-11 01:25:59 +0300 |
commit | 739dacf6d4061ad1960423f2844b5319114741a3 (patch) | |
tree | 2a53459f4c6da4afa388213c0bf7112d3be3c138 /layouts/go/partials | |
parent | a79499018bed35bab05f888ce0103b37655e2852 (diff) |
Auto-commit 2024-12-11
Diffstat (limited to 'layouts/go/partials')
-rw-r--r-- | layouts/go/partials/list.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/layouts/go/partials/list.html b/layouts/go/partials/list.html new file mode 100644 index 0000000..bfdf13b --- /dev/null +++ b/layouts/go/partials/list.html @@ -0,0 +1,24 @@ +<article> + <header> + <div class="row between-xs"> + <a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a> + <a href="https://godoc.neonxp.ru/neonxp.ru/go/{{ .Params.Name }}"> + <img src="https://godoc.neonxp.ru/neonxp.ru/go/{{ .Params.Name }}?status.svg" /> + </a> + </div> + </header> + {{ if .Params.Image }} + <img src="{{ .RelPermalink }}{{.Params.Image}}" /> + {{ end }} + {{ if .Description }} + {{ .Description }} + {{ else }} + {{ .Summary }} + {{ if .Truncated }} + <a href="{{ .RelPermalink }}">Далее...</a> + {{ end }} + {{ end }} + <footer> + {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }} + </footer> +</article>
\ No newline at end of file |