---
title: Watching
description: Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion.
permalink: "/watching/index.html"
schema: watching
updated: "now"
---
{%- assign featuredMovie = movies.recentlyWatched | shuffleArray | first -%}
{{ title }}
{% render "media/watching/hero.liquid",
globals:globals,
movie:featuredMovie
%}
Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion.
You can see all of the shows I've got queued up here.
{% render "blocks/banners/rss.liquid",
url: "/feeds/movies.xml",
text: "Subscribe to my movies feed or follow along on this page"
%}
{% render "media/grid.liquid",
globals:globals,
data:movies.recentlyWatched,
shape:"vertical",
count:6
%}
{% render "media/grid.liquid",
globals:globals,
data:tv.recentlyWatched,
shape:"vertical",
count:6
%}
{% assign favoriteMovies = movies.favorites | shuffleArray %}
{% render "media/grid.liquid",
globals:globals,
data:favoriteMovies,
shape:"vertical",
count:6
%}
{% assign favoriteShows = tv.favorites | shuffleArray %}
{% render "media/grid.liquid",
globals:globals,
data:favoriteShows,
shape:"vertical",
count:6
%}