an existing HTML page, without having to serve the entire page
via a CGI program, or other dynamic technology.</p>
+ <p>For example, you might place a directive into an existing HTML
+ page, such as:</p>
+
+ <example>
+ <!--#echo var="DATE_LOCAL" -->
+ </example>
+
+ <p>And, when the page is served, this fragment will be evaluated and replaced with its value:</p>
+
+ <example>
+ Tuesday, 15-Jan-2013 19:28:54 EST
+ </example>
+
<p>The decision of when to use SSI, and when to have your page
entirely generated by some program, is usually a matter of how
much of the page is static, and how much needs to be
recalculated every time the page is served. SSI is a great way
- to add small pieces of information, such as the current time.
- But if a majority of your page is being generated at the time
- that it is served, you need to look for some other
- solution.</p>
+ to add small pieces of information, such as the current time - shown
+ above. But if a majority of your page is being generated at the time
+ that it is served, you need to look for some other solution.</p>
</section>
<section id="configuring">