fix: link dates
This commit is contained in:
parent
59fe2be86a
commit
4599863a06
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "4.5.0",
|
"version": "4.5.1",
|
||||||
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
|
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -11,7 +11,7 @@ pagination:
|
||||||
<h2 class="flex--centered">{{ link.title }}</h2>
|
<h2 class="flex--centered">{{ link.title }}</h2>
|
||||||
</a>
|
</a>
|
||||||
<time class="dt-published" datetime="{{ link.date }}">
|
<time class="dt-published" datetime="{{ link.date }}">
|
||||||
{{ poslinkt.date | date: "%m.%Y" }}
|
{{ link.date | date: "%m.%Y" }}
|
||||||
</time>
|
</time>
|
||||||
<blockquote class="p-summary">{{ link.summary | markdown }}</blockquote>
|
<blockquote class="p-summary">{{ link.summary | markdown }}</blockquote>
|
||||||
{%- if link.note %}
|
{%- if link.note %}
|
||||||
|
|
Reference in a new issue