Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><a href="http://www.catalystframework.org/" rel="nofollow noreferrer">Catalyst</a> seems to be a very good framework, especially when coupled with <a href="http://template-toolkit.org/" rel="nofollow noreferrer">Template Toolkit</a>. If you want to learn Catalyst, I would definitely read through the <a href="http://search.cpan.org/perldoc?Catalyst::Manual::Tutorial" rel="nofollow noreferrer">Catalyst tutorial</a>.</p> <p><a href="http://template-toolkit.org/" rel="nofollow noreferrer">Template Toolkit</a> seems to me to be a more capable template processing system than <a href="http://search.cpan.org/perldoc?Mason" rel="nofollow noreferrer">Mason</a>.</p> <p>Personally, I think <a href="http://template-toolkit.org/" rel="nofollow noreferrer">Template Toolkit</a> is worth learning, even if you don't use it for the web.</p> <p><em>Code copied from <a href="http://template-toolkit.org/about.html" rel="nofollow noreferrer">Template-Toolkit.org</a></em></p> <pre> [% FOREACH person IN people %] [% IF loop.first %] &lt;table&gt; &lt;tr&gt; &lt;th&gt;Rank&lt;/th&gt; &lt;th&gt;Name&lt;/th&gt; &lt;th&gt;Email&lt;/th&gt; &lt;/tr&gt; [% END %] &lt;tr&gt; &lt;td&gt;[% loop.count %]&lt;/td&gt; &lt;td&gt;[% person.name %]&lt;/td&gt; &lt;td&gt;[% person.email %]&lt;/td&gt; &lt;/tr&gt; [% IF loop.last %] &lt;/table&gt; [% END %] [% END %] </pre> <p>You can even embed <a href="http://template-toolkit.org/docs/manual/Directives.html#section_PERL" rel="nofollow noreferrer">Perl</a> code directly into your templates. The <code>EVAL_PERL</code> option must be enabled for Perl code to be evaluated.</p> <pre> [% TRY %] [% PERL %] die "nothing to live for\n"; [% END %] [% CATCH %] error: [% error.info %] [% END %] </pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload