source: trunk/template/yoga/notification.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: 616 bytes
Line 
1<!-- DEV TAG: not smarty migrated -->
2<div id="content">
3
4  <div class="titrePage">
5    <ul class="categoryActions">
6      <li><a href="{U_HOME}" title="{lang:return to homepage}"><img src="{themeconf:icon_dir}/home.png" class="button" alt="{lang:home}"/></a></li>
7    </ul>
8    <h2>{lang:Notification}</h2>
9  </div>
10
11  <p>{lang:The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.}</p>
12
13  <p><a href="{U_FEED_IMAGE_ONLY}">{lang:Image only RSS feed}</a></p>
14  <p><a href="{U_FEED}">{lang:Complete RSS feed}</a></p>
15</div>
Note: See TracBrowser for help on using the repository browser.