51 lines
No EOL
1.6 KiB
HTML
51 lines
No EOL
1.6 KiB
HTML
---
|
|
layout: default
|
|
pagination:
|
|
data: posts
|
|
size: 1
|
|
alias: post
|
|
permalink: "{{ post.slug }}/index.html"
|
|
schema: blog
|
|
---
|
|
<article class="standalone">
|
|
<div class="post-meta">
|
|
{%- if post.featured -%}{% tablericon "star" %}{%- endif -%}
|
|
<time datetime="{{ post.date }}">
|
|
{{ post.date | date: "%B %e, %Y" }}
|
|
</time>
|
|
</div>
|
|
<h3>
|
|
{{ post.title }}
|
|
</h3>
|
|
<div>
|
|
{% render "partials/blocks/banners/old-post.liquid", date:post.date %}
|
|
{%- if post.image -%}
|
|
<img
|
|
srcset="
|
|
https://cdn.coryd.dev/{{ post.image }}?class=w200&type=webp 200w,
|
|
https://cdn.coryd.dev/{{ post.image }}?class=w400&type=webp 400w,
|
|
https://cdn.coryd.dev/{{ post.image }}?class=w800&type=webp 800w,
|
|
https://cdn.coryd.dev/{{ post.image }}?class=w1600&type=webp 1600w
|
|
"
|
|
sizes="(max-width: 450px) 200px,
|
|
(max-width: 850px) 400px,
|
|
(max-width: 1000px) 800px,
|
|
1200px"
|
|
src="https://cdn.coryd.dev/{{ post.image }}?class=w200"
|
|
alt="{{ post.image_alt }}"
|
|
class="image-banner"
|
|
loading="eager"
|
|
decoding="async"
|
|
width="200"
|
|
height="auto"
|
|
/>
|
|
{%- endif -%}
|
|
{{ post.content | markdown }}
|
|
{% render "partials/blocks/index.liquid", blocks:post.blocks %}
|
|
{% render "partials/blocks/associated-media.liquid", artists:post.artists %}
|
|
{% render "partials/blocks/associated-media.liquid", books:post.books %}
|
|
{% render "partials/blocks/associated-media.liquid", genres:post.genres %}
|
|
{% render "partials/blocks/associated-media.liquid", movie:post.movies %}
|
|
{% render "partials/blocks/associated-media.liquid", shows:post.shows %}
|
|
</div>
|
|
</article> |