there were duplicate freemarker variables being used; resolved this by changing the name of the variable used for the application or site name
This commit is contained in:
parent
90cec22e9d
commit
59ddbe15ec
21 changed files with 36 additions and 39 deletions
|
@ -5,7 +5,7 @@
|
|||
<#import "lib-datetime.ftl" as dt>
|
||||
<#import "lib-string.ftl" as str>
|
||||
|
||||
<h2>${title}</h2>
|
||||
<h2>${title!}</h2>
|
||||
|
||||
<@widget name="test" />
|
||||
|
||||
|
@ -57,8 +57,8 @@
|
|||
<p>${year?number?c}</p>
|
||||
|
||||
<h3>${i18n().raw_string_literals}</h3>
|
||||
<p>${r"#{title}"}</p>
|
||||
<p>${r"${title}"}</p>
|
||||
<p>${r"#{title!}"}</p>
|
||||
<p>${r"${title!}"}</p>
|
||||
|
||||
<h2>${i18n().containers_do_not_pick_up_changes}</h2>
|
||||
<#assign
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue