diff --git a/src/pages/articles.md b/src/pages/articles.md
new file mode 100644
index 00000000..2b0a0377
--- /dev/null
+++ b/src/pages/articles.md
@@ -0,0 +1,38 @@
+---
+layout: main/content
+title: Articles
+metadata:
+ desc: List of articles published on my website.
+ type: article
+date: 2023-01-04
+templateEngineOverride: njk, md
+toc: true
+---
+
+## My Articles
+Articles I have written.
+
+ {%- for article in collections["my articles"] -%}
+ -
+
{{ article.data.articleTitle }}
+
+
+ {%- endfor -%}
+
+
+## My Articles for Video Games with Their Own Pages
+
+ {%- for article in collections["featured articles"] -%}
+ -
+
{{ article.data.articleTitle }}
+
+
+ {%- endfor -%}
+
diff --git a/src/pages/articles.njk b/src/pages/articles.njk
deleted file mode 100644
index 037da19c..00000000
--- a/src/pages/articles.njk
+++ /dev/null
@@ -1,43 +0,0 @@
----
-layout: main/content
-title: Articles
-metadata:
- desc: List of articles published on my website.
- type: article
-date: 2023-01-04
-contentIsDivided: true
----
-
-
- Featured Articles
- Articles featuring other people's interview with me.
-
- {% for article in collections["featured articles"] %}
- -
-
{{ article.data.articleTitle }}
-
-
- {% endfor %}
-
-