How to make a page-specific title in Dancer templa

2019-07-10 02:40发布

I have a standard Perl Dancer app, using Template::Toolkit as rendering engine, with two routes:

get '/' => sub {
    template 'index';
};

get '/foo' => sub {
    template 'foo';
};

My views/templates/main.tt contains the line:

<title><%= title %></title>

I want the value of title var be "My Site" on page '/', and "Foo - My Site" on page '/foo'.

I know I can put these values in the controller file, like this:

    template 'index', { title => 'My Site' };

but I want to specify them in the corresponding template files, views/index.tt and views/foo.tt.

How can I do that?

Thanks.

1条回答
Deceive 欺骗
2楼-- · 2019-07-10 03:14

This documentation clearly explains how to configure your application to make available in your layout the variables defined in your templates.

For the title tag, you can save yourself the effort to define the title in each template using the variable template.name. Maybe something like that:

<title>
  <% template.name.match('(\w+).tt').0.ucfirst %> - <% settings.sitename %>
</title>
查看更多
登录 后发表回答