Smarty模板继承和img src属性

时间:2012-09-23 18:23:13

标签: php smarty image src

有没有办法让Smarty转换 src & href 在使用模板继承时将值归因于正确的URL

exmple:

file:web / tpl / layout.tpl

<img src="../img/logo.png" />
{block name=content}{/block}

file:index.tpl

{extends file="web/tpl/layout"}
{block name=content} home page content here{/block}

file:dir / index.tpl

{extends file="../web/tpl/layout"}
{block name=content} an other page content here{/block}

1 个答案:

答案 0 :(得分:1)

我认为您应该定义基本网址并在src和href中使用它:

<img src="{$baseurl}/img/logo.png" />
{block name=content}{/block}