Skip to content
Discussion options

You must be logged in to vote

Yes, this is already possible! You can use two instances of the blog plugin next to each other as long as they are hosted in different directories. Something like the following should work:

.
├─ docs/
│  ├─ blog-1/
│  │  ├─ posts/
│  │  └─ index.md
│  └─ blog-2/
│     ├─ posts/
│     └─ index.md
└─ mkdocs.yml

Then, in mkdocs.yml:

plugins:
  - blog:
      blog_dir: blog-1
  - blog:
      blog_dir: blog-2

nav:
  - Blog-1:
    - blog-1/index.md
  - Blog-2:
    - blog-2/index.md

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by dgoosens
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #6279 on November 02, 2023 14:37.