I have a base/layout template called base.tmpl
I have two sub templates that extend base.tmpl, called tester.tmpl and home.tmpl
In home.tmpl I use @extends(base, title: "Welcome!"), which gives error: Cannot find extended template by name "base"
In tester.tmpl I use @extends(base.tmpl, title: "Testing page") and it works (though I get a deprecation warning).
In my rythm.conf I have the setting resource.name.suffix=.tmpl , so then why is Rythm unable to find base.tmpl when invoked in home.tmpl?
All three .tmpl files are in the same directory.
What am I doing wrong?