14 lines
377 B
HTML
14 lines
377 B
HTML
---
|
|
permalink: "watching/recent/index.html"
|
|
---
|
|
|
|
{% from "macros/media-grid.njk" import grid %}
|
|
{% set data = collections.movie | reverse %}
|
|
<a class="button" href="/watching">
|
|
{% include "svgs/arrow-left.svg" %}
|
|
Back to watching</a>
|
|
<section class="flow">
|
|
<h1>Recently watched</h1>
|
|
<p>A collection of movies I've seen recently.</p>
|
|
{{ grid(data) }}
|
|
</section>
|