Update of /cvsroot/phpwebapp/app2/templates
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18276/templates
Modified Files:
page1_content.html
Log Message:
Index: page1_content.html
===================================================================
RCS file: /cvsroot/phpwebapp/app2/templates/page1_content.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** page1_content.html 21 Jul 2004 17:11:34 -0000 1.6
--- page1_content.html 29 Jul 2004 14:42:35 -0000 1.7
***************
*** 14,25 ****
double curly braces: <strong>{{#tpl_var}}</strong>.</p>
! <h4>The &lt;Include&gt; tag</h4>
<p>The templates may also contain some extra tags, which are not
HTML tags. These tags are reckognised and processed by the
! framework. One of them is the <strong>&lt;Include&gt;</strong> tag,
which is used to include another template inside the current template:</p>
<pre>
! &lt;Include src="file_to_be_included" /&gt;
</pre>
--- 14,25 ----
double curly braces: <strong>{{#tpl_var}}</strong>.</p>
! <h4>The &lt;include&gt; tag</h4>
<p>The templates may also contain some extra tags, which are not
HTML tags. These tags are reckognised and processed by the
! framework. One of them is the <strong>&lt;include&gt;</strong> tag,
which is used to include another template inside the current template:</p>
<pre>
! &lt;include src="file_to_be_included" /&gt;
</pre>
***************
*** 34,42 ****
<p>The templates may contain some special comments as well:</p>
<pre>
! &lt;!--# Framework comments #--&gt;
</pre>
<p>These comments are like HTML comments by they have a diesis (#)
! at the opening and closing marks. These comments are not processed
by the framework and are not displayed in the HTML page that is
generated.</p>
--- 34,42 ----
<p>The templates may contain some special comments as well:</p>
<pre>
! &lt;!--# Framework comments --&gt;
</pre>
<p>These comments are like HTML comments by they have a diesis (#)
! at the opening mark. These comments are not processed
by the framework and are not displayed in the HTML page that is
generated.</p>
***************
*** 51,56 ****
into another page. They are included like this:</p>
<pre>
! &lt;script language="javascript" src="file.js"&gt;&lt;/script&gt;
! &lt;link rel="stylesheet" type="text/css" href="file.css"&gt;
</pre>
--- 51,56 ----
into another page. They are included like this:</p>
<pre>
! &lt;script type="text/javascript" language="javascript" src="file.js"&gt;&lt;/script&gt;
! &lt;link type="text/css" rel="stylesheet" href="file.css"&gt;
</pre>
|