-
Notifications
You must be signed in to change notification settings - Fork 26.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using jekyll-archives as per the instructions results in blank category and tag archives pages #1984
Comments
I've read the Jekyll docs, and the above questions are not answered. I'm keeping the ticket open so that the doc can be made clearer. Based on #811, I'm not the only one having trouble with archives :) |
There is documentation about this already: https://mmistakes.github.io/minimal-mistakes/docs/configuration/#archive-settings |
That portion of the docs doesn’t answer questions 2 and 3. |
It is up to how you want to deal with the categories/tags links listed after a post. The default (using Liquid) has them linking to whatever you name your category or tag archive page. In the MM example I'm using Because the Liquid method can't generate individual pages for each taxonomy term, it's linking to ids on the page. That's where you get links like If you're using Jekyll Archives it will generate the taxonomy pages for you. So you can change the permalinks to link to those directly:
And the second set of configs are for Jekyll Archives. The paths for the theme need to match JA's permalinks else you'll have broken links. The documentation states this. Really the only difference is JA has
Unfortunately Jekyll isn't really plug and play like Wordpress with a lot of this stuff. It's built for developers, and because of that there's a lot of extra knowledge and know-how you need to have to use the more advanced stuff. |
Following the instructions in Taxonomy archives, I don't see any posts listed under
/categories
:_config.yml
Gemfile
But when I go to
![categories](https://user-images.githubusercontent.com/1302775/49361850-de981600-f691-11e8-81c3-9faf2a44f54c.jpg)
categories
, I see the following; clicking on individual category link takes me to a blank page that lists the category name, but no posts.Even if the links worked, I hate the ugly index page. I think the documentations needs to be clearer about using Jekyll archives plugin vs Liquid. Currently, the instructions go back and forth, and for muggles like me, it's confusing.
I have not copied the category-archive.md to
_pages
because I got the impression that it's not needed when using jekyll-archives.The text was updated successfully, but these errors were encountered: