diff options
Diffstat (limited to 'template/yoga/about.tpl')
-rw-r--r-- | template/yoga/about.tpl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/template/yoga/about.tpl b/template/yoga/about.tpl index c4299972c..398f266f8 100644 --- a/template/yoga/about.tpl +++ b/template/yoga/about.tpl @@ -1,19 +1,19 @@ -<!-- DEV TAG: not smarty migrated --> +{* $Id$ *} <div id="content"> <div class="titrePage"> <ul class="categoryActions"> <li> - <a href="{U_HOME}" title="{lang:return to homepage}"> - <img src="{themeconf:icon_dir}/home.png" class="button" alt="{lang:home}"/> + <a href="{$U_HOME}" title="{'return to homepage'|@translate}"> + <img src="{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}"/> </a> </li> </ul> - <h2>{lang:About}</h2> + <h2>{'About'|@translate}</h2> </div> <ul> - {ABOUT_MESSAGE} - <!-- BEGIN theme --> - <li>{theme.ABOUT}</li> - <!-- END theme --> + {$ABOUT_MESSAGE} + {if isset($THEME_ABOUT) } + <li>{$THEME_ABOUT}</li> + {/if} </ul> </div> |