Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions _articles/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
article_index: true
title: Articles

---

# Articles

Once in a while I write things. I am going
to start writing more things more frequently
and posting them here. I hope they are
interesting, or better yet helpful, to you.

<ArticleIndex />
15 changes: 15 additions & 0 deletions tlroadmap/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,21 @@ module.exports = (ctx) => ({
lastUpdated: 'В последний раз обновлено',
},
plugins: [
[
'@vuepress/blog',
{
directories: [
{
id: 'article',
dirname: '_articles',
itemPermalink: '/articles/:slug',
pagination: {
lengthPerPage: 2,
},
}
],
},
],
[
'@vuepress/last-updated',
{
Expand Down