From: Andre P. <at...@us...> - 2004-05-16 08:42:24
|
Update of /cvsroot/hoc/www/templates.hoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1857/templates.hoc Added Files: .htaccess footer.shtml header.shtml Log Message: Switched webpages to use Apache server-side includes (SSI) rather than duplicating header/footer information in every HTML file Added Screenshots page Added Examples page --- NEW FILE: .htaccess --- # Turn on Server-Side Includes (SSI) and indexes Options Indexes +Includes # SSI support for .shtml files AddType text/html .shtml AddHandler server-parsed .shtml # SSI support for +x'ed .html files: # See http://httpd.apache.org/docs/howto/ssi.html XBitHack Full --- NEW FILE: header.shtml --- <html> <head> <title>HOC <!--#echo var="title" --></title> </head> <style type="text/css" media="screen">@import "hoc.css";</style> <body> <div id="mainBox" class="main-box"> <div class="content-box"> <!-- Logo --> <div class="logo-box"> <!--#if expr="${big-logo} = yes" --> <table width="100%" cellpadding="4" cellspacing="4"> <tr> <td border="0" rowspan="2"> <img src="HOC-Logo.png"> </td> <td align="center"> <font size="+4"><strong>HOC:</strong></font> </td> </tr> <th align="center"> <font size="+3">A Haskell to Objective-C Binding</a> </th> </table> <!--#else --> <table align="center" width="100%" cellpadding="4" cellspacing="4"> <tr> <td border="0" align="right"> <img src="HOC-Small-Logo.png"> </td> <td align="center"> <font size="+3">HOC: A Haskell to Objective-C Binding</font> </td> </tr> </table> <!--#endif --> </div> <!-- Tabs --> <div class="tab-box"> <table align="center" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"> <!-- Home --> <!--#if expr="${active-tab} = Home" --> <td><img src="tab-start-selected.png" alt="" border="0"></td> <td border="0"> <img src="tab-home-selected.png" alt="Home" border="0"> </td> <!--#else --> <td><img src="tab-start.png" alt="" border="0"></td> <td border="0"> <a href="index.html" class="plain"> <img src="tab-home.png" alt="Home" border="0"> </a> </td> <!--#endif --> <!--#if expr="${active-tab} = Home || ${active-tab} = Download" --> <td><img src="tab-divisor-selected.png" alt=" | " border="0"></td> <!--#else --> <td><img src="tab-divisor.png" alt=" | " border="0"></td> <!--#endif --> <!-- Download --> <td border="0"> <a href="download.html" class="plain"> <img src="tab-download.png" alt="Download" border="0"> </a> </td> <!--#if expr="${active-tab} = Download || ${active-tab} = Examples" --> <td><img src="tab-divisor-selected.png" alt=" | " border="0"></td> <!--#else --> <td><img src="tab-divisor.png" alt=" | " border="0"></td> <!--#endif --> <!-- Examples --> <td border="0"> <!--#if expr="${active-tab} = Examples" --> <img src="tab-examples-selected.png" alt="Examples" border="0"> <!--#else --> <a href="examples.html" class="plain"> <img src="tab-examples.png" alt="Examples" border="0"> </a> <!--#endif --> </td> <!--#if expr="${active-tab} = Examples || ${active-tab} = Screenshots" --> <td><img src="tab-divisor-selected.png" alt=" | " border="0"></td> <!--#else --> <td><img src="tab-divisor.png" alt=" | " border="0"></td> <!--#endif --> <!-- Screenshots --> <td border="0"> <!--#if expr="${active-tab} = Screenshots" --> <img src="tab-screenshots-selected.png" alt="Screenshots" border="0"> <!--#else --> <a href="screenshots.html" class="plain"> <img src="tab-screenshots.png" alt="Screenshots" border="0"> </a> <!--#endif --> </td> <!--#if expr="${active-tab} = Screenshots || ${active-tab} = Documentation" --> <td><img src="tab-divisor-selected.png" alt=" | " border="0"></td> <!--#else --> <td><img src="tab-divisor.png" alt=" | " border="0"></td> <!--#endif --> <!-- Documentation --> <td border="0"> <!--#if expr="${active-tab} = Documentation" --> <img src="tab-documentation-selected.png" alt="Documentation" border="0"> <!--#else --> <a href="documentation.html" class="plain"> <img src="tab-documentation.png" alt="Documentation" border="0"> </a> <!--#endif --> </td> <!--#if expr="${active-tab} = Documentation || ${active-tab} = Support" --> <td><img src="tab-divisor-selected.png" alt=" | " border="0"></td> <!--#else --> <td><img src="tab-divisor.png" alt=" | " border="0"></td> <!--#endif --> <!-- Support --> <td border="0"> <!--#if expr="${active-tab} = Support" --> <img src="tab-support-selected.png" alt="Support" border="0"> <!--#else --> <a href="support.html" class="plain"> <img src="tab-support.png" alt="Support" border="0"> </a> <!--#endif --> </td> <!--#if expr="${active-tab} = Support" --> <td border="0"><img src="tab-end-selected.png" alt="" border="0"></td> <!--#else --> <td border="0"><img src="tab-end.png" alt="" border="0"></td> <!--#endif --> </tr> </table> <div class="firstpage"> --- NEW FILE: footer.shtml --- </div> </div> </div> <p><table width="100%" cellpadding="0" cellspacing="0"> <tr> <td align="left" valign="top"> <font size="-1"> <!--#config timefmt="%A, %B %d %Y (%H:%M %z)" --> Last updated on <!--#echo var="LAST_MODIFIED" --> </font> </td> <td align="right"><a href="http://sourceforge.net/" class="plain"> <img src="http://sourceforge.net/sflogo.php?group_id=93369&type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /> </a> </td> </tr> </table></p> </div> </body> </html> |