Remove Roots side bar from page templates

I read through the Roots sidebar documentation and it seemed pretty straight forward.

I want to exclude the sidebar from blog post pages so I added content-single.php to the template array in config.php.

array(
        'template-custom.php',
        'content-single.php'
)

However, I’m still seeing the sidebar?

Take a look at the comments above that array, that is only for page templates.

You would want to put 'is_single' in the previous array to target all single posts.

That worked perfectly. Thanks for your help!