NorbiPeti
4024ebe455
- Fixed song listing on artist pages - Fixed artist page generation - Sorted artist listing - Added menu and moved displayed titles to the template - Linking songs from artist pages - Added a page for streams and collected the data for it manually - Implemented Popular and Hidden Songs on the index page - Bunch of fixes of URLs and such
14 lines
No EOL
381 B
HTML
14 lines
No EOL
381 B
HTML
---
|
|
title: Artists
|
|
ptitle: Artists
|
|
---
|
|
<ul>
|
|
{% assign artists = site.data.artists | sort: 'sname' %}
|
|
{% for artist in artists %}
|
|
<li>
|
|
<h2><a href="{{ site.baseurl }}/{{ artist.sname | datapage_url: 'artists' }}">{{ artist.sname }}</a></h2>
|
|
<h3>{{ artist.position }}</h3>
|
|
<p>{{ artist.content | markdownify }}</p>
|
|
</li>
|
|
{% endfor %}
|
|
</ul> |