chore: html api stubs
This commit is contained in:
parent
149ee7e713
commit
d0e83ccc3b
4 changed files with 24 additions and 0 deletions
6
src/api/html/music/month-albums.liquid
Normal file
6
src/api/html/music/month-albums.liquid
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
layout: null
|
||||
permalink: /api/html/music/month-albums
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
{% render "partials/now/media-grid.liquid", data:musicCharts.month.albums, icon: "vinyl", title: "Albums", shape: "square", count: 8 %}
|
6
src/api/html/music/month-artists.liquid
Normal file
6
src/api/html/music/month-artists.liquid
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
layout: null
|
||||
permalink: /api/html/music/month-artists
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
{% render "partials/now/media-grid.liquid", data:musicCharts.month.artists, icon: "microphone-2", title: "Artists", shape: "square", count: 8, loading: "eager" %}
|
6
src/api/html/music/window-albums.liquid
Normal file
6
src/api/html/music/window-albums.liquid
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
layout: null
|
||||
permalink: /api/html/music/window-albums
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
{% render "partials/now/media-grid.liquid", data:music.albums, icon: "vinyl", title: "Albums", shape: "square", count: 8 %}
|
6
src/api/html/music/window-artists.liquid
Normal file
6
src/api/html/music/window-artists.liquid
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
layout: null
|
||||
permalink: /api/html/music/window-artists
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
{% render "partials/now/media-grid.liquid", data:music.artists, icon: "microphone-2", title: "Artists", shape: "square", count: 8, loading: "eager" %}
|
Reference in a new issue