source: trunk/template/yoga/slideshow.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: 573 bytes
Line 
1<!-- DEV TAG: not smarty migrated -->
2<!-- $Id: slideshow.tpl 2222 2008-02-27 23:08:44Z rub $ -->
3<div id="imageHeaderBar">
4  <div class="browsePath">
5    <!-- BEGIN stop_slideshow -->
6    [ <a href="{stop_slideshow.U_SLIDESHOW}">{lang:slideshow_stop}</a> ]
7    <!-- END stop_slideshow -->
8  </div>
9  <div class="imageNumber">{PHOTO}</div>
10  <!-- BEGIN title -->
11  <h2 class="showtitle">{TITLE}</h2>
12  <!-- END title -->
13</div>
14
15<div id="imageToolBar">
16  {NAV_BUTTONS}
17</div>
18
19<div id="theImage">
20  {ELEMENT_CONTENT}
21  <!-- BEGIN legend -->
22  <p class="showlegend">{legend.COMMENT_IMG}</p>
23  <!-- END legend -->
24</div>
Note: See TracBrowser for help on using the repository browser.