<div dir="ltr"><div>Hi,<br><br>given this simple template:<br><br><h2><% name %></h2><br><br>And this code:<br><br><br>#!/usr/bin/env perl<br>use Dancer2;<br><br>set engines => {<br>    template => {<br>        template_toolkit => {<br>            start_tag  => '<%',<br>            end_tag    =>  '%>',<br>        }<br>    }<br>};<br>set template =>  "template_toolkit";<br> <br>get '/' => sub {<br>    template 'demo', { name => 'Perl Maven' };<br>};<br><br>dance;<br>       <br><br>I see the expected display, but if I change the order of the two 'set' statements<br>then I just get   <h2><% name %></h2> as output.<br><br></div><div><br>Why is that?<br><br><br>Gabor<br></div><div>ps. I don't have any configuration files. This is a stand-alone script with an external tt file.<br><br></div></div>