Script

Show Script

Showing code for: testcal.irev

Back

<?rev
   -- Standard header -------------------------------
   put "Troz : : On-Rev" into tHeader
   include "../../includes/header.irev"
   
   include "../../includes/menu.irev"
   --------------------------------------------------
?>

<?rev include "includes/scriptlink.irev" ?>
<h1>Embedded Calendar</h1>

<h2>This is to see if a calendar can be embedded into a regular html page</h2>

<p>The <a href="calendar.irev">calendar.irev</a> page has a calendar 
   as a standalone page, but I want to be able to have a calendar 
   inside a more general purpose web page.<br />
It uses a smaller and simpler version of the calendar script allowing no date selection, 
so it is for information only.<br />
This is what is used in the sidebar on almost every page of this site.

<hr />

<table border="1" cellpadding="10" width="90%">
<tr>
<th width="70%">
   Notes
</th>
<th>
   Calendar
</th>
</tr>

<tr>
<td>
This is to show that the calendar can be embedded into a table.
</td>
<td align="center">
<?rev
   include "includes/cal.irev"
?>
</td>
</tr>
</table>


<?rev
   -- Standard footer -------------------------------
   include "includes/showIncludes.irev"
   include "../../includes/footer.irev"
   --------------------------------------------------
?>