-
Notifications
You must be signed in to change notification settings - Fork 99
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
Add the subindexes plugin. #67
Conversation
(Uh, that error doesn’t seem like something I caused…) |
@@ -0,0 +1,74 @@ | |||
# -*- coding: utf-8 -*- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing a license
(can be anything you like)
@@ -0,0 +1,74 @@ | |||
# -*- coding: utf-8 -*- | |||
|
|||
from __future__ import unicode_literals |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
more like
# Copyright © 2015 Blake Winton.
It looks like this plugin completely ignores archives. You can easily have a blog which has indexes already there. For example, my blog has https://chriswarrick.com/blog/2014/ and also https://chriswarrick.com/blog/2014/11/09/inbox-review/ via archives and posts/ structured mirrored in output. |
Neat. How did you get https://chriswarrick.com/blog/2014/11/09/inbox-review/ to show up there? Is the inbox-review post in a "2014/11/09" directory? (Also, that seems to solve a slightly different problem than the one I was trying to solve, since I want the sub-indexes to show up, and https://chriswarrick.com/blog/2014/11/ doesn't show all the posts in 2014/11… :) |
|
Ah! Yes! I should definitely make it check for that. |
No, you’d have to check possibilities manually, according to current archive settings. |
One of the things I missed from PyBlosxom was a sub-index listing all the posts underneath a subdirectory.
So I wrote this. :)
Any suggestions about how to make it better would be greatly appreciated!