About this Website

Accessibility Features:

Navigational Features:

Other Features:

Valid XHTML 1.0! Valid CSS! Level Double-A conformance icon, W3C-WAI Web Content Accessibility Guidelines 1.0

Features for Local Users:


Future Work:

Much work remains. Many sections do not yet have their information architecture worked out, nor is all content online. A database-driven Events calendar is under discussion.

Once the major content components are up, we intend to study the overall organization: can people find what they seek? Different users may have different experiences in this regard, so our study will include a variety of subjects. This will lead to various reorganizations.

Finally, the overall graphic design, also called look and feel, must be improved upon. This may require bringing in a professional design firm.

Some of the past and ongoing discussions are being archived at intranet.math.arizona.edu/~www-main-2003/.


Implementation notes

This website is coded mostly in XHTML with CSS. We use PHP for a small amount of management: including standard header/footer material, and generating data-driven content on certain pages, such as in the People section.

We tried to set it up so that the server-side source for most pages is trivially easy to read/edit. It reminds us of how simple HTML was back in the days of HTML 1.0. The idea is that our markup should be so simple, anyone can edit it.


At the top, most pages start with something along the following lines:

<?php
// Every page must set some variables and suck in the topmatter:
$title = "About this Website";
$short_title = "Website";
$sectiontree_marker = "resources.website";
//
include("dirvars");
include("$dotsToSectionHome/rsrc/inc_top");
?>

<p>
This website is coded mostly in XHTML...
and they end with:
<?php include("$dotsToSectionHome/rsrc/inc_bottom"); ?>


Our CSS code makes it easy to have a few standard types of highlighted elements:

<div class="centerbox">
A centered box with left-aligned text.
</div>
A centered box with left-aligned text.
<div class="centerbox center larger">
A centered box with centered text that has been made larger.
</div>
A centered box with centered text that has been made larger.
<div class="sidebox">
A side box floating to the right, with no width limitation.
</div>
<div class="sidebox wide">
<div>Title</div>
<p>Same thing, but with a title, and forced to not take up as much width.</p>
</div>
<div class="sidebox narrow">
<div>Title</div>
<p>Same thing, but even narrower.</p>
</div>

Navigation tree for section Resources