mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-10 19:05:41 +01:00
Fix likes
This commit is contained in:
parent
822930613f
commit
2a31ca5e54
3 changed files with 9 additions and 7 deletions
|
@ -5,7 +5,6 @@ likeOf: https://sli.dev/
|
||||||
references:
|
references:
|
||||||
https://sliDev/:
|
https://sliDev/:
|
||||||
url: https://sli.dev/
|
url: https://sli.dev/
|
||||||
children:
|
name: Slidev
|
||||||
- type: item
|
summary: Presentation Slides for Developers
|
||||||
- type: item
|
|
||||||
---
|
---
|
||||||
|
|
|
@ -3,4 +3,4 @@ title: Likes
|
||||||
emoji: 💙
|
emoji: 💙
|
||||||
---
|
---
|
||||||
|
|
||||||
All the sites I've 'liked' since I started recording these via micropub in May 2024.
|
All the pages from other sites I've _liked_ since I started recording them here in May 2024.
|
||||||
|
|
|
@ -20,9 +20,12 @@
|
||||||
<div class="posts-group">
|
<div class="posts-group">
|
||||||
<div class="post-year">{{ .Key }}</div>
|
<div class="post-year">{{ .Key }}</div>
|
||||||
|
|
||||||
{{ range $i, $page := .Pages }}
|
<p>
|
||||||
<a href="{{$page.Params.likeOf}}" target="_blank">{{ partial "page-title.txt" $page }}</a>{{ if lt $i (sub (len .Pages) 1) }}, {{ end }}
|
{{- $pages := .Pages -}}
|
||||||
{{ end }}
|
{{ range $i, $page := $pages }}
|
||||||
|
<a href="{{$page.Params.likeOf}}" target="_blank">{{ partial "page-title.txt" $page }}</a>{{ if lt $i (sub (len $pages) 1) }}, {{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ partial "pagination-list.html" . }}
|
{{ partial "pagination-list.html" . }}
|
||||||
|
|
Loading…
Reference in a new issue