diff --git a/src/pages/main/watching/movie.html b/src/pages/main/watching/movie.html
new file mode 100644
index 00000000..75934ebc
--- /dev/null
+++ b/src/pages/main/watching/movie.html
@@ -0,0 +1,23 @@
+---
+layout: default
+pagination:
+ data: movies.movies
+ size: 1
+ alias: movie
+permalink: /movies/{{ movie.id }}/
+schema: movie
+---
+{%- capture alt -%}
+ {{ movie.title }} • {{ movie.year }}{% if move.rating %} ({{ movie.rating }}){% endif %}
+{%- endcapture -%}
+
+
+
+
+ {% if movie.description %}{{ movie.description }}
{% endif %}
+
\ No newline at end of file
diff --git a/src/pages/main/watching/show.html b/src/pages/main/watching/show.html
new file mode 100644
index 00000000..7f7d84c4
--- /dev/null
+++ b/src/pages/main/watching/show.html
@@ -0,0 +1,23 @@
+---
+layout: default
+pagination:
+ data: tv.shows
+ size: 1
+ alias: show
+permalink: /shows/{{ show.tmdb_id }}/
+schema: show
+---
+{%- capture alt -%}
+ {{ show.title }} • {{ show.year }}
+{%- endcapture -%}
+{% assign lastWatched = show | getLastWatched %}
+
+
+
+
+ {% if show.description %}{{ show.description }}
{% endif %}
+
\ No newline at end of file