diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-02-28 02:41:48 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-02-28 02:41:48 +0000 |
commit | c73923204927f406d492491398980d3aa429c4eb (patch) | |
tree | 717f79ecab01b8d97c359c27406be6dd26ff8193 /template/yoga/about.tpl | |
parent | 618158aca4d99fe522b0f54d547442f17a5db148 (diff) |
- migrate many templates to smarty
git-svn-id: http://piwigo.org/svn/trunk@2223 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-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> |