Files
marcus-web/layouts/series/list.html
T

50 lines
2.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{ define "main" -}}
<h1 class="title">{{ .Title }}</h1>
{{ if eq .Title "Found in the Darkroom" }}
<div style="margin-bottom: 2em; line-height: 1.6;">
<p>
In <em>I Saw the TV Glow</em>, Maddy leaves behind recordings of <em>The Pink Opaque</em> for Owen in the school darkroom. It is a quiet, out-of-the-way space where the episodes can be discovered, plucked out of time just in time for those who need it most. The darkroom becomes less a literal place and more a threshold. The place where a signal from the real world survives long enough to be found.
</p>
<p>
Here at the <strong>Double Lunch Dispatch</strong>, we couldnt help but draw a parallel between those tapes left for Owen and the films selected for inclusion in the Library of Congress National Film Registry. Each year, 25 films are added not because they are fashionable or newly released, but because they are deemed “culturally, historically, or aesthetically significant” works of art worth preserving so they can be encountered again by future viewers, long after their original moment has passed. This series of blog posts is going on that journey of finding out what the people who were here before us are trying to say. I hope this makes sense to whoever reads this. So many ideas and attempts go into it. Fingers crossed its not garbled up.
</p>
<p>
Like the episodes of <em>The Pink Opaque</em> waiting in the darkroom, these films are held in trust, set aside so they dont disappear into static. You can find the complete list of films preserved in the National Film Registry
<a href="https://www.loc.gov/programs/national-film-preservation-board/film-registry/complete-national-film-registry-listing/" target="_blank">here</a>.
</p>
<img src="/images/tvglow-darkroom.gif"
alt="I Saw the TV Glow Pink Opaque tapes in the darkroom"
style="max-width: 100%; height: auto; margin-top: 1.5em; border-radius: 6px;" />
</div>
{{ end }}
<ul class="entries">
{{ range .Pages.GroupByDate "2006" }}
<h3 style="text-align: center;">{{ .Key }}</h3>
{{ range .Pages }}
<li>
<span class="title">
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ if .Params.year }}
<span style="color: #888;">({{ .Params.year }})</span>
{{ end }}
{{ if .Params.nfr_year }}
<span style="color: #888; font-size: 0.9em;"> • NFR {{ .Params.nfr_year }}</span>
{{ end }}
</span>
<span class="published">
<time class="pull-right post-list">{{ .Date | time.Format ":date_long" }}</time>
</span>
</li>
{{ end }}
{{ end }}
</ul>
{{ end }}