svn commit: r1928381 - apr/site/trunk/docs
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <175771089223.132935.13045644353454075827@svn02-us-east.apache.org> |
Author: dsahlberg Date: Fri Sep 12 21:01:32 2025 New Revision: 1928381 Log: In site/trunk Continue experimenting with a more modern layout. * style.css Add a stylesheet like it's 1998 (the publication year of CSS 2) * projects.html Experiment with a div-based layout Added: apr/site/trunk/docs/style.css Modified: apr/site/trunk/docs/projects.html Modified: apr/site/trunk/docs/projects.html ============================================================================== --- apr/site/trunk/docs/projects.html Fri Sep 12 20:04:09 2025 (r1928380) +++ apr/site/trunk/docs/projects.html Fri Sep 12 21:01:32 2025 (r1928381) @@ -1,18 +1,17 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html> <html> <head> - <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/> - <meta name="viewport" content="width=device-width, initial-scale=1.0"/> - <meta name="author" content="APR Developers" /><meta name="email" content="[email protected]" /> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="author" content="APR Developers"><meta name="email" content="[email protected]"> <title>Projects Using the Apache Portable Runtime - The Apache Portable Runtime Project</title> + <link rel="stylesheet" type="text/css" href="/style.css"> </head> <body bgcolor="#ffffff" text="#000000" link="#525D76"> -<p><a href="/"><img src="./images/apr_logo_wide.png" alt="The Apache Portable Runtime Project" border="0"/></a></p> - <table border="0" width="100%" cellspacing="4"> - <tr> +<div id="logo"><a href="/"><img src="./images/apr_logo_wide.png" alt="The Apache Portable Runtime Project" border="0"></a></div> + <div id="page"> <!-- LEFT SIDE NAVIGATION --> - <td valign="top" nowrap="nowrap"> + <div id="site-nav"> <!-- <span style="border:0; margin:0; padding:0;" ><a href="http://apache.org/foundation/conferences.html" @@ -62,9 +61,9 @@ <li><a href="https://www.apache.org/events/current-event.html">Events</a></li> <li><a href="https://privacy.apache.org/policies/privacy-policy-public.html">Privacy Policy</a></li> </menu> - </td> + </div> <!-- RIGHT SIDE INFORMATION --> - <td align="left" valign="top"> + <div id="site-content"> <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#525D76"> <font color="#ffffff" face="arial,helvetica,sanserif"> @@ -102,22 +101,17 @@ name and a URL to get added to this list </blockquote> </td></tr> </table> - </td> - </tr> - <!-- FOOTER --> - <tr><td colspan="2"><hr noshade="noshade" size="1"/></td></tr> - <tr><td colspan="2" align="center"> - <font size="-1"> + </div> + </div> + + <!-- FOOTER --> + <div align="center"> + <hr noshade="noshade" size="1"> + <p><font size="-1"> <em>Copyright © 2008-2021, The Apache Software Foundation</em> - </font> - </td> - </tr> - <tr><td colspan="2" align="center"> - <font size="-1"> + <br> <em>Apache Portable Runtime, Apache, and the Apache logo are trademarks of The Apache Software Foundation.</em> - </font> - </td> - </tr> - </table> + </font></p> + </div> </body> </html> Added: apr/site/trunk/docs/style.css ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ apr/site/trunk/docs/style.css Fri Sep 12 21:01:32 2025 (r1928381) @@ -0,0 +1,14 @@ +#logo { + padding: 8px; +} +#page { + overflow: auto; +} +#site-nav { + float: left; + width: 15em; +} +#site-content { + margin-left: 15.1em; +} +