Some checks failed
Blowfish Docs Deploy / build (push) Has been cancelled
Blowfish Docs Deploy / deploy (push) Has been cancelled
Test Build / Build Example Site (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Update Hugo version / updateBlowfish (push) Has been cancelled
Delete exampleSite Add initial content, images & docker-compose.yml Use extend-head.html for analytics Set remote url to gitea.novicelab.io Remove original .git due to "shallow update not allowed" error
26 lines
849 B
HTML
26 lines
849 B
HTML
<span>
|
|
{{ $id := "null" }}
|
|
{{ if eq .Kind "taxonomy" }}
|
|
{{ $id = delimit (slice "views_taxonomy_" .Page.Data.Plural) "" }}
|
|
{{ else if eq .Kind "term" }}
|
|
{{ $id = delimit (slice "views_term_" .Page.Data.Term) "" }}
|
|
{{ else }}
|
|
{{ $translations := .AllTranslations }}
|
|
{{ with .File }}
|
|
{{ $path := .Path }}
|
|
{{ range $translations }}
|
|
{{ $lang := print "." .Lang ".md" }}
|
|
{{ $path = replace $path $lang ".md" }}
|
|
{{ end }}
|
|
{{ $id = delimit (slice "views_" $path) "" }}
|
|
{{ end }}
|
|
{{ end }}
|
|
<span
|
|
id="{{ $id }}"
|
|
class="animate-pulse inline-block text-transparent max-h-3 rounded-full -mt-[2px] align-middle bg-neutral-300 dark:bg-neutral-400"
|
|
title="views"
|
|
>loading</span
|
|
>
|
|
<span class="inline-block align-text-bottom">{{ partial "icon.html" "eye" }}</span>
|
|
</span>
|