28 lines
No EOL
1.1 KiB
HTML
28 lines
No EOL
1.1 KiB
HTML
---
|
|
title: Shows to watch
|
|
description: These are shows I want to watch, sorted in alphabetical order. As one would expect, it will change as I navigate through and add to it.
|
|
layout: default
|
|
pagination:
|
|
data: tv.toWatch
|
|
alias: shows
|
|
size: 30
|
|
permalink: "/watching/shows-to-watch/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
|
|
schema: watching
|
|
---
|
|
<a class="back-link-header link-icon flex-centered" href="/watching" title="Go back to the watching index page">{% tablericon "arrow-left" "Go back" %} Go back</a>
|
|
{% if pagination.pageNumber == 0 %}
|
|
<h2 class="page-header">{{ title }}</h2>
|
|
<p>These are shows I want to watch, sorted in alphabetical order. As one would expect, it will change as I navigate through and add to it.</p>
|
|
<hr class="large-spacing" />
|
|
{% endif %}
|
|
<ul class="link-list reduced-spacing">
|
|
{% for show in pagination.items %}
|
|
<li>
|
|
<a href="{{ show.url }}">
|
|
<strong>{{ show.title }}</strong>
|
|
</a>
|
|
{% if show.year %}({{ show.year }}){% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% render "partials/widgets/paginator.liquid", pagination:pagination %} |