Is it possible to organize blog posts into a “blog” subdirectory? I’m positive that it is, but I just can’t seem to get this setup to work:
I have source/_posts/2015-07-12-a-good-bug-report.md
. If I move it from _posts
to just residing in source, it works perfectly. BUT I don’t want to have a thousand blog posts cluttering everything up.
In my config.rb
file I have the following:
activate :blog do |blog|
blog.sources = "_posts/{year}-{month}-{day}-{title}.md"
end
activate :directory_indexes
I haven’t done anything else weird that may be affecting it that I know of.