2019-04-01 23:16:35 +02:00
|
|
|
---
|
|
|
|
---
|
|
|
|
{% include base.html %}
|
2019-02-28 17:06:17 +01:00
|
|
|
[
|
2019-04-01 23:16:35 +02:00
|
|
|
{% for album in site.albums %}
|
2019-02-28 17:06:17 +01:00
|
|
|
{
|
2019-04-01 23:16:35 +02:00
|
|
|
"title": "{{ album.name }}",
|
|
|
|
"img": "{{ base }}{{ album.cover }}",
|
|
|
|
"href": "{{ base }}/albums/{{ album.slug }}"
|
|
|
|
}{% unless forloop.last %},{% endunless %}
|
|
|
|
{% endfor %}
|
2019-02-28 17:06:17 +01:00
|
|
|
]
|