source: trunk/template/yoga/mainpage_categories.tpl @ 2226

Last change on this file since 2226 was 2222, checked in by rub, 17 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: 879 bytes
Line 
1<!-- DEV TAG: not smarty migrated -->
2<!-- BEGIN categories -->
3<!-- $Id: mainpage_categories.tpl 2222 2008-02-27 23:08:44Z rub $ -->
4<ul class="thumbnailCategories">
5  <!-- BEGIN category -->
6  <li>
7    <div class="thumbnailCategory">
8      <div class="illustration">
9        <a href="{categories.category.URL}">
10          <img src="{categories.category.SRC}" alt="{categories.category.ALT}" title="{categories.category.TITLE}">
11        </a>
12      </div>
13      <div class="description">
14        <h3>
15          <a href="{categories.category.URL}">{categories.category.NAME}</a>
16          {categories.category.ICON}
17        </h3>
18        <!-- BEGIN dates -->
19        <p>{categories.category.dates.INFO}</p>
20        <!-- END dates -->
21        <p>{categories.category.CAPTION_NB_IMAGES}&nbsp;</p>
22        <p>{categories.category.DESCRIPTION}&nbsp;</p>
23      </div>
24    </div>
25  </li>
26  <!-- END category -->
27</ul>
28<!-- END categories -->
Note: See TracBrowser for help on using the repository browser.