I have a page that i want a diffrent layout on, but i cant get it to work.
Only gets the _default layout on this page.
I have checked lookup-order Either I’m tired or I’ve missed something.
I have my content as this
/content/about/index.md
---
Title: "About"
---
Blank
And the layout i want to use as this
/layout/about/single.html
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
<div id="content">
{{ .Content }}
</div>
</body>
</html>