source: trunk/template/yoga/tags.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: 587 bytes
Line 
1<!-- DEV TAG: not smarty migrated -->
2<!-- $Id: tags.tpl 2222 2008-02-27 23:08:44Z rub $ -->
3<div id="content">
4
5  <div class="titrePage">
6    <ul class="categoryActions">
7      <li><a href="{U_HOME}" title="{lang:return to homepage}"><img src="{themeconf:icon_dir}/home.png" class="button" alt="{lang:home}"/></a></li>
8    </ul>
9    <h2>{lang:Tags}</h2>
10  </div>
11
12  <ul id="fullTagCloud">
13    <!-- BEGIN tag -->
14    <li><a href="{tag.URL}" class="{tag.CLASS}" title="{tag.TITLE}">{tag.NAME}</a></li>
15    <!-- END tag -->
16    <li>&nbsp;</li> <!-- FIXME W3C HTML Conformity said: No empty UL -->
17  </ul>
18
19</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.