feat: add links page
This commit is contained in:
parent
5e46c9a334
commit
4637629344
4 changed files with 26 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "4.4.0",
|
"version": "4.5.0",
|
||||||
"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": {
|
||||||
|
|
|
@ -19,6 +19,8 @@ export default async function () {
|
||||||
url: link['source_url'],
|
url: link['source_url'],
|
||||||
tags: [...new Set(Object.keys(link['tags']))],
|
tags: [...new Set(Object.keys(link['tags']))],
|
||||||
date: link['created_at'],
|
date: link['created_at'],
|
||||||
|
summary: link['summary'],
|
||||||
|
note: link['notes'],
|
||||||
description: `${link['summary']}<br/><br/>`,
|
description: `${link['summary']}<br/><br/>`,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -11,6 +11,7 @@ export default async function () {
|
||||||
{ name: 'Now' },
|
{ name: 'Now' },
|
||||||
{ name: 'About' },
|
{ name: 'About' },
|
||||||
{ name: 'Tags', icon: 'tags' },
|
{ name: 'Tags', icon: 'tags' },
|
||||||
|
{ name: 'Links', icon: 'link' },
|
||||||
{ name: 'Search', icon: 'search' },
|
{ name: 'Search', icon: 'search' },
|
||||||
{ name: 'Feeds', icon: 'rss' },
|
{ name: 'Feeds', icon: 'rss' },
|
||||||
{ name: 'Mastodon', icon: 'brand-mastodon' },
|
{ name: 'Mastodon', icon: 'brand-mastodon' },
|
||||||
|
|
22
src/links.html
Normal file
22
src/links.html
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
title: Links
|
||||||
|
layout: default
|
||||||
|
pagination:
|
||||||
|
data: links
|
||||||
|
size: 8
|
||||||
|
---
|
||||||
|
{% for link in links %}
|
||||||
|
<article class="h-entry">
|
||||||
|
<a class="no-underline" href="{{ link.url }}">
|
||||||
|
<h2 class="flex--centered">{{ link.title }}</h2>
|
||||||
|
</a>
|
||||||
|
<time class="dt-published" datetime="{{ link.date }}">
|
||||||
|
{{ poslinkt.date | date: "%m.%Y" }}
|
||||||
|
</time>
|
||||||
|
<blockquote class="p-summary">{{ link.summary | markdown }}</blockquote>
|
||||||
|
{%- if link.note %}
|
||||||
|
<p class="p-summary">{{ link.note | markdown }}</p>
|
||||||
|
{% endif -%}
|
||||||
|
</article>
|
||||||
|
{% endfor %}
|
||||||
|
{% include "partials/paginator.liquid" %}
|
Reference in a new issue