-
Recently did I take a look at the blog of squidfunk at https://squidfunk.github.io/mkdocs-material/blog/ and I love the way it looks. This inspired me to try and update my own blog made with MkDocs, but taking a look at the markdown page of the blog tells me that this seems to be a manual labor you have to do each time a blog post is published. While there are plugins for MkDocs that allow easier blogging do most of them have limitations I like to avoid such as very rigid folder structures or no real customization options. With that said do I have no real experience with jinja2 templating and don't want to risk breaking everything... So if anyone has experience with that plugin and is willing to help me out here, I would really appreciate it a lot... |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Yes, it's currently manual labor. You can take a look at #3192 which seems to abstract away some stuff.
I'd be very interested in learning more about that, especially where the plugins fall short. |
Beta Was this translation helpful? Give feedback.
-
I managed to create something similar to what you have using the mkdocs-blogging-plugin which works very nicely. One downside is, that stuff like svg icons need to be added in a separate folder for the But I see this as a rather small downside compared to what you gain. Either way, this is, what I currently have now: The template override I have is here: |
Beta Was this translation helpful? Give feedback.
I managed to create something similar to what you have using the mkdocs-blogging-plugin which works very nicely.
One downside is, that stuff like svg icons need to be added in a separate folder for the
{% include %}
to work (Or requires you to define an absolute path rather than relative).But I see this as a rather small downside compared to what you gain.
Either way, this is, what I currently have now:
The template override I have is here:
https://github.com/Andre601/blog/blob/master/theme/blog/blog-override.html