diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-12-01 22:27:26 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-12-01 22:28:46 -0800 |
| commit | 743d1e3d4c421385111dfd63482cd92a5fff02c1 (patch) | |
| tree | 8b79dfd7b89297b1c8c6864d57943f03e0a183fe /indieweb-micro/themes/MinIndie/layouts/bookmarks/single.html | |
| parent | 4d75a6ded99babeffc3c264a9f38b510a7c59ce7 (diff) | |
move micro to its own site (better compatability with indieweb feats)
Diffstat (limited to 'indieweb-micro/themes/MinIndie/layouts/bookmarks/single.html')
| -rw-r--r-- | indieweb-micro/themes/MinIndie/layouts/bookmarks/single.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/indieweb-micro/themes/MinIndie/layouts/bookmarks/single.html b/indieweb-micro/themes/MinIndie/layouts/bookmarks/single.html new file mode 100644 index 0000000..8ee4bf1 --- /dev/null +++ b/indieweb-micro/themes/MinIndie/layouts/bookmarks/single.html @@ -0,0 +1,44 @@ +{{ define "main" }} + <main> + <article class="h-entry"> + <div hidden>{{ partial "bio-hcard.html" . }}</div> + + <h1 class="p-name"> + <a href="{{ .Params.bookmark_url }}" target="_blank" class=""> + {{ .Title }} + </a> + </h1> + <div><b> + <time class="dt-published" datetime="{{ .Date.Format "2006-01-02" }}"> + {{ .Date.Format (default "2006-01-02 15:04:05" .Site.Params.dateFmt) }} + </time> + - <a href="{{ .Permalink }}" class="u-url u-uid" >Permalink</a> + </b></div> + <div class="tags"> + Tags: + {{ range .Params.tags }} + <a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}" class="p-category">{{ . }}</a> + {{ end }} + </div> + + {{ with .Params.description }} + <div class="bookmark-description"> + Description: + <blockquote>{{ . }}</blockquote> + </div> + {{ end }} + + {{ with .Content }} + <div class="e-content justify">{{ . }}</div> + {{ end }} + + <div> + → <a href="{{ .Params.bookmark_url }}" target="_blank" class="u-bookmark-of h-cite"> + {{ .Params.bookmark_url }} + </a><br /><br /> + </div> + + {{ partial "article-extra.html" . }} + </article> + </main> +{{ end }} |
