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="content-list">
{%- for article in collections["my articles"] -%}
<li>
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
<time>{{ article.date | niceDate }}</time>
</li>
{%- endfor -%}
</ul>
## My Articles for Video Games with Their Own Pages
* My <cite>Cassette Beasts</cite> shrine [Articles](/shrines/cassettebeasts/articles/) page
* My <cite>Star Wars: Knights of the Old Republic</cite> shrine [Articles](/shrines/starwarskotor/articles/) page
{.content-list}
2024-04-15 13:05:00 +00:00
## Featured Articles
Articles featuring other people's interview with me.
<ul class="content-list">
{%- for article in collections["featured articles"] -%}
<li>
<p><a href="{{ article.url }}">{{ article.data.articleTitle }}</a></p>
<time>{{ article.date | niceDate }}</time>
</li>
{%- endfor -%}
</ul>