Content Type Template In Theme Directory

I am trying to get a content type template to load from my custom theme.

/mytheme/layouts//single.html

I can get it to load from the top level /layouts//single.html folder.

But I want to load the template from the theme directory because all the scss, images, etc… are located there.

How can I get a content type template to load from the theme directory?

Thanks

Hugo follows a lookup order to decide which layout is used: Template lookup order | Hugo

Not sure if that’s a typo? Try putting the single.html layout file in /themes/<THEME>/layouts/_default/single.html

Also make sure then that you don’t have similarly-named file /layouts/_default/single.html (i.e. in the top-level layouts directory).