Can Mustache Templates do template extension?

后端 未结 9 526
醉话见心
醉话见心 2021-01-30 06:39

I\'m new to Mustache.

Many templating languages (e.g., Django / Jinja) will let you extend a \"parent\" template like so...

ba

9条回答
  •  无人共我
    2021-01-30 07:11

    In mustache php, template inheritance is supported since version 2.7.0.

    https://github.com/bobthecow/mustache.php/wiki/BLOCKS-pragma

    You can figure out your current version from the file Mustache/Engine.php and search for the line containing:

    class Mustache_Engine
    {
        const VERSION        = '2.8.0';
        ...
    

提交回复
热议问题