fix: pagination data passthrough for track charts

This commit is contained in:
Cory Dransfeldt 2024-10-13 20:13:51 -07:00
parent 652780d8f9
commit bf875e93d2
No known key found for this signature in database
5 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "1.0.10",
"version": "1.0.11",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"scripts": {

View file

@ -23,5 +23,5 @@
</ol>
</div>
{%- unless count -%}
{% render "partials/nav/paginator.liquid", pagination:data %}
{% render "partials/nav/paginator.liquid", pagination:pagination %}
{%- endunless -%}

View file

@ -17,4 +17,4 @@ schema: music
<p><a href="/music/concerts">You can also take a look at the concerts I've been to.</a></p>
<hr />
{% endif %}
{% render "partials/media/music/chart.liquid" data:pagination.items %}
{% render "partials/media/music/chart.liquid" data:pagination.items, pagination:pagination %}

View file

@ -17,4 +17,4 @@ schema: music
<p><a href="/music/concerts">You can also take a look at the concerts I've been to.</a></p>
<hr />
{% endif %}
{% render "partials/media/music/chart.liquid" data:pagination.items %}
{% render "partials/media/music/chart.liquid" data:pagination.items, pagination:pagination %}

View file

@ -17,4 +17,4 @@ schema: music
<p><a href="/music/concerts">You can also take a look at the concerts I've been to.</a></p>
<hr />
{% endif %}
{% render "partials/media/music/chart.liquid" data:pagination.items %}
{% render "partials/media/music/chart.liquid" data:pagination.items, pagination:pagination %}