leilukin-site/src/pages/articles.md

39 lines
1.1 KiB
Markdown
Raw Normal View History

2024-04-15 13:05:00 +00:00
---
layout: main/content
title: Articles
desc: List of articles published on my website.
2024-04-15 13:05:00 +00:00
metadata:
type: article
templateEngineOverride: njk, md
2024-04-15 13:05:00 +00:00
toc: true
eleventyNavigation:
order: 5
2024-04-15 13:05:00 +00:00
---
## My Articles
Articles I have written.
<ul class="item-list">
2024-04-15 13:05:00 +00:00
{%- for article in collections["my articles"] -%}
<li>
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
2024-05-10 02:34:12 +00:00
<time>{{ article.date | formatDate }}</time>
2024-04-15 13:05:00 +00:00
</li>
{%- endfor -%}
</ul>
## My Articles for Video Games with Their Own Pages
2024-05-06 14:44:07 +00:00
* My {% cite "Cassette Beasts" %} shrine [Articles](/shrines/cassettebeasts/articles/) page
* My {% cite "Star Wars: Knights of the Old Republic" %} shrine [Articles](/shrines/starwarskotor/articles/) page
{.item-list}
2024-04-15 13:05:00 +00:00
## Featured Articles
Articles featuring other people's interview with me.
<ul class="item-list">
2024-04-15 13:05:00 +00:00
{%- for article in collections["featured articles"] -%}
<li>
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
2024-05-10 02:34:12 +00:00
<time>{{ article.date | formatDate }}</time>
2024-04-15 13:05:00 +00:00
</li>
{%- endfor -%}
</ul>