middleman / middleman-blog

Blog Engine Extension for Middleman
https://middlemanapp.com
MIT License
325 stars 179 forks source link

How to disable day_link calendar pages #342

Closed JarLowrey closed 7 years ago

JarLowrey commented 7 years ago

This thread says to just comment the line out, but that does not work. I want year and month pages to exist but not individual days. Thanks!

iwarner commented 7 years ago

The syntax for this is:

blog.generate_day_pages   = false
blog.generate_month_pages = false
blog.generate_year_pages = false

Also if you go to the url /__middleman when you have middleman server up then you can see all the configuration options.

JarLowrey commented 7 years ago

Thanks much! I couldn't find this in the documentation and didn't know which options to look for in /__middleman. It's a big help!

iwarner commented 7 years ago

@JTronLabs Yeah for context you want to look at the extensions in the confguration and you will see all the blog options.

Good luck.