source: trunk/template/yoga/about.tpl @ 2222

Last change on this file since 2222 was 2222, checked in by rub, 16 years ago

Add comment tags in order to know tpl to migrate

# tag
for f in find . -name \*.tpl
do

echo $f
mv $f $f.tmp
echo '<!-- DEV TAG: not smarty migrated -->' > $f
cat $f.tmp >> $f
rm -f $f.tmp

done

#find file not migrated
for f in find . -name \*.tpl
do

grep -i '<!-- DEV TAG: not smarty migrated -->' $f > /dev/null && echo $f

done

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 454 bytes
Line 
1<!-- DEV TAG: not smarty migrated -->
2<div id="content">
3  <div class="titrePage">
4    <ul class="categoryActions">
5      <li>
6        <a href="{U_HOME}" title="{lang:return to homepage}">
7          <img src="{themeconf:icon_dir}/home.png" class="button" alt="{lang:home}"/>
8        </a>
9      </li>
10    </ul>
11    <h2>{lang:About}</h2>
12  </div>
13  <ul>
14  {ABOUT_MESSAGE}
15  <!-- BEGIN theme -->
16  <li>{theme.ABOUT}</li>
17  <!-- END theme -->
18  </ul>
19</div>
Note: See TracBrowser for help on using the repository browser.