12 lines
248 B
JSON
12 lines
248 B
JSON
|
---
|
||
|
---
|
||
|
{% include base.html %}
|
||
|
[
|
||
|
{% for album in site.albums %}
|
||
|
{
|
||
|
"title": "{{ album.name }}",
|
||
|
"img": "{{ base }}{{ album.cover }}",
|
||
|
"href": "{{ base }}/albums/{{ album.slug }}"
|
||
|
}{% unless forloop.last %},{% endunless %}
|
||
|
{% endfor %}
|
||
|
]
|