BEWARE: your web browser may be out-of-date...
Web Page Templates
Here is a simple template for an empty home page hosted on DARKWING-- copy this to the file "index.php" in your public_html directory and make it executable.
#!/usr/local/bin/php
<?php { include('/home2/math/public_html/includes/top.html'); } ?>
<div id="main" style="clear: both;">
<div id="subnav">
<br />
<h2>Put Your Title Here</h2>
</div>
<!-- PUT YOUR CONTENT HERE -->
<!-- DONT FORGET TO MAKE THE FILE EXECUTABLE -->
<!-- END OF YOUR CONTENT -->
<br />
</div>
<?php { include('/home2/math/public_html/includes/bottom.html'); } ?>
Here is a simple template for an empty home page hosted on NOETHER-- copy this to the file "index.php" in your public_html directory and make it executable.
<?php { include('http://math.uoregon.edu/includes/top.html'); } ?>
<div id="main" style="clear: both;">
<div id="subnav">
<br />
<h2>Put Your Title Here</h2>
</div>
<!-- PUT YOUR CONTENT HERE -->
<!-- DONT FORGET TO MAKE THE FILE EXECUTABLE -->
<!-- END OF YOUR CONTENT -->
<br />
</div>
<?php { include('http://math.uoregon.edu/includes/bottom.html'); } ?>
Here is a template for a seminar web page hosted on DARKWING -- copy this to a file in your public_html directory, make it executable, then ask to get it linked from the main seminar page.
#!/usr/local/bin/php
<?php { include('/home2/math/public_html/includes/top.html'); } ?>
<div id="main" style="clear: both;">
<div id="subnav">
<br />
<h2>Name of Your Seminar</h2>
</div>
<table width="665" border="0" cellspacing="0" cellpadding="0">
<tr><td style="width: 476px"><br />
<!-- PUT YOUR CONTENT HERE -->
<!-- DON'T FORGET TO MAKE THE FILE EXECUTABLE BY OTHERS -->
<p>This seminar is held...
</p>
<h3>Fall Quarter, 2005</h3>
<ul>
<li>October 1 - <strong>Isaac Newton</strong> - University of Cambridge.<br />
<a href="full-path-of-abstract"><strong>Quantum cohomology</strong></a><br />
</li>
</ul>
<!-- THAT IS THE END OF YOUR CONTENT -->
</td>
<td id="sidebar">
<?php { include('/home2/math/public_html/seminars/nav.html'); } ?>
</td>
</tr>
</table>
<br />
</div>
<?php { include('/home2/math/public_html/includes/bottom.html'); } ?>
Here is a template for a seminar web page hosted on NOETHER -- copy this to a file in your public_html directory, make it executable, then ask to get it linked from the main seminar page.
<?php { include('http://math.uoregon.edu/includes/top.html'); } ?>
<div id="main" style="clear: both;">
<div id="subnav">
<br />
<h2>Name of Your Seminar</h2>
</div>
<table width="665" border="0" cellspacing="0" cellpadding="0">
<tr><td style="width: 476px"><br />
<!-- PUT YOUR CONTENT HERE -->
<!-- DON'T FORGET TO MAKE THE FILE EXECUTABLE BY OTHERS -->
<p>This seminar is held...
</p>
<h3>Fall Quarter, 2005</h3>
<ul>
<li>October 1 - <strong>Isaac Newton</strong> - University of Cambridge.<br />
<a href="full-path-of-abstract"><strong>Quantum cohomology</strong></a><br />
</li>
</ul>
<!-- THAT IS THE END OF YOUR CONTENT -->
</td>
<td id="sidebar">
<?php { include('http://math.uoregon.edu/seminars/nav.html'); } ?>
</td>
</tr>
</table>
<br />
</div>
<?php { include('http://math.uoregon.edu/includes/bottom.html'); } ?>