fix: pagination data passthrough for track charts
This commit is contained in:
parent
652780d8f9
commit
bf875e93d2
5 changed files with 5 additions and 5 deletions
|
@ -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": {
|
||||
|
|
|
@ -23,5 +23,5 @@
|
|||
</ol>
|
||||
</div>
|
||||
{%- unless count -%}
|
||||
{% render "partials/nav/paginator.liquid", pagination:data %}
|
||||
{% render "partials/nav/paginator.liquid", pagination:pagination %}
|
||||
{%- endunless -%}
|
|
@ -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 %}
|
|
@ -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 %}
|
|
@ -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 %}
|
Reference in a new issue