Hello,
I have this directory layout.
app/views
- welcome
---- index.html.haml
— layouts
------ login.html.haml
So to use the login.html.haml I thought this would work.
Contents of welcome/index.html
= render ‘layouts/login’
But still I see a template missing error message.
How to solve this ?
Roelof