fix: post template
This commit is contained in:
parent
4fec382cd9
commit
34d2020173
1 changed files with 29 additions and 0 deletions
29
src/pages/main/posts/post.html
Normal file
29
src/pages/main/posts/post.html
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
pagination:
|
||||||
|
data: posts
|
||||||
|
size: 1
|
||||||
|
alias: post
|
||||||
|
permalink: "/posts/{{ post.date | date: '%Y' }}/{{ post.title | slugify | downcase }}/index.html"
|
||||||
|
schema: blog
|
||||||
|
---
|
||||||
|
{%- capture postUrl %}{{ meta.url }}{{ post.url }}{% endcapture -%}
|
||||||
|
<div class="default-wrapper">
|
||||||
|
<article class="h-entry">
|
||||||
|
<div class="flex-centered gap-xs icon-small icon-light">
|
||||||
|
{% tablericon "calendar-month" "Date" %}
|
||||||
|
<time class="dt-published" datetime="{{ date }}">
|
||||||
|
{{ post.date | date: "%B %e, %Y" }}
|
||||||
|
</time>
|
||||||
|
</div>
|
||||||
|
<h2 class="p-name">{{ post.title }}</h2>
|
||||||
|
<span class="p-author h-card hidden">{{ meta.author }}</span>
|
||||||
|
<div class="p-summary hidden">{{ post.description }}</div>
|
||||||
|
<div class="e-content">
|
||||||
|
{% render "partials/banners/old-post.liquid", date:post.date %}
|
||||||
|
{{ post.content | markdown }}
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
</div>
|
||||||
|
{% render "partials/widgets/mastodon-post.liquid", postUrl:postUrl, linkPosts:linkPosts %}
|
||||||
|
{% render "partials/widgets/addon-links.liquid", posts:posts, analytics:analytics, links:links %}
|
Reference in a new issue