-
Notifications
You must be signed in to change notification settings - Fork 28
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
Taxonomies #10
base: master
Are you sure you want to change the base?
Taxonomies #10
Conversation
@theorangepotato If someone was to implement this how would they use it? Does it display tags on a post page? Does it show a list page of the taxonomies and which blog posts use them? |
These are good questions, sorry I didn't make this more clear. Currently, this is a pretty minimal implementation of taxonomies. There is no global declaration of categories or tags, but each post has its categories/tags listed in the metadata. These taxonomies are displayed in the post metadata next to the date, so they would appear both in lists (like
which would then look like this: Now, if you click on any of those taxonomy links, for instance This would allow you to group posts together, but would not be a very intrusive feature. Currently there are no meta taxonomy pages (pages that list all categories/tags), though that could be a feature that is implemented, if there is the desire. Hopefully that answers all of your questions. |
Ahh, I see where I went wrong now. I was using
|
Ah, yeah, that makes sense. There are several formats, and the one you tried is the TOML syntax to define new taxonomies (like, in addition to contegories and tags). The default minimal-academic frontmatter is YAML, though. |
This adds support for taxonomies to Minimal Academic, as requested in issue #1. The last commit, which adds RSS links to taxonomy pages, is very optional, I just stylistically prefer it.