feat: dedicated music page(s); pagination fixes; nav + color updates; assorted updates
This commit is contained in:
parent
619abaca03
commit
00a94fc7a8
36 changed files with 111 additions and 148 deletions
10
src/pages/main/watching/favorites/movies.html
Normal file
10
src/pages/main/watching/favorites/movies.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: Favorite movies
|
||||
layout: default
|
||||
permalink: "/watching/favorite-movies/index.html"
|
||||
---
|
||||
<p><a class="link-icon flex-centered" href="/watching">{% tablericon "arrow-left" "Go back" %} Go back</a></p>
|
||||
<h2 class="watching page-header">{{ title }}</h2>
|
||||
<p>These are my favorite movies. There are many like them, but these are mine.</p>
|
||||
<hr class="large-spacing" />
|
||||
{% render "partials/watching/favorites-grid.liquid", favorites:movies.favorites, count: 99 %}
|
10
src/pages/main/watching/favorites/shows.html
Normal file
10
src/pages/main/watching/favorites/shows.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: Favorite shows
|
||||
layout: default
|
||||
permalink: "/watching/favorite-shows/index.html"
|
||||
---
|
||||
<p><a class="link-icon flex-centered" href="/watching">{% tablericon "arrow-left" "Go back" %} Go back</a></p>
|
||||
<h2 class="watching page-header">{{ title }}</h2>
|
||||
<p>These are my favorite shows. There are many like them, but these are mine.</p>
|
||||
<hr class="large-spacing" />
|
||||
{% render "partials/watching/favorites-grid.liquid", favorites:tv.favorites, count: 99 %}
|
Reference in a new issue