--- title: Watching permalink: "watching/index.html" --- {% from "macros/media-grid.njk" import grid %} {% set movies = collections.movie | reverse | limit(5) %} {% set shows = collections.tv | reverse | limit(5) %} {% set favouriteMovies = collections.movie | filterFavourites | reverse | limit(5) %} {% set favouriteShows = collections.tv | filterFavourites | reverse | limit(5) %}

Watching

A collection of movies and shows I've seen. I tend to watch more movies than shows these days.

Recent movies

{{ grid(movies) }}

Recent shows

{{ grid(shows) }}

Favourite movies

{{ grid(favouriteMovies) }}

Favourite shows

{{ grid(favouriteShows) }}