Skip to content

Commit

Permalink
refactor(layouts.artists): add links to songs
Browse files Browse the repository at this point in the history
  • Loading branch information
alebabai committed Sep 30, 2024
1 parent b22e6f8 commit 09f9064
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion layouts/artists/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,17 @@ <h1>{{ .Title }}</h1>
{{ .Content }}
{{- range .Pages.ByTitle }}
<article>
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
<header>
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
</header>
{{ .Summary }}
<ul>
{{- range .Pages.ByTitle }}
<li>
<h3><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h3>
</li>
{{- end }}
</ul>
</article>
{{- end }}
{{- end }}

0 comments on commit 09f9064

Please sign in to comment.