Author: cmpilato Date: Tue Jan 12 13:59:52 2010 New Revision: 898324 URL: http://svn.apache.org/viewvc?rev=898324&view=rev Log: In 'site/publish/cmpilato-playground':
* site-footer.html, * site-banner.html Add wrapping <div>. * site-nav.html Formatting tweaks and wrapping <div>. * index.html Add wrapping <div> around main content. * site.css Flesh out and organize some styles. Modified: subversion/site/publish/cmpilato-playground/index.html subversion/site/publish/cmpilato-playground/site-banner.html subversion/site/publish/cmpilato-playground/site-footer.html subversion/site/publish/cmpilato-playground/site-nav.html subversion/site/publish/cmpilato-playground/site.css Modified: subversion/site/publish/cmpilato-playground/index.html URL: http://svn.apache.org/viewvc/subversion/site/publish/cmpilato-playground/index.html?rev=898324&r1=898323&r2=898324&view=diff ============================================================================== --- subversion/site/publish/cmpilato-playground/index.html (original) +++ subversion/site/publish/cmpilato-playground/index.html Tue Jan 12 13:59:52 2010 @@ -10,12 +10,14 @@ <body> <!--#include virtual="site-banner.html" --> <!--#include virtual="site-nav.html" --> +<div id="site-content"> <h1>Apache Subversion</h1> <p>More information about Subversion is available on our <a href="http://subversion.tigris.org/" >old website</a>.</p> +</div> <!-- #site-content --> <!--#include virtual="site-footer.html" --> </body> </html> Modified: subversion/site/publish/cmpilato-playground/site-banner.html URL: http://svn.apache.org/viewvc/subversion/site/publish/cmpilato-playground/site-banner.html?rev=898324&r1=898323&r2=898324&view=diff ============================================================================== --- subversion/site/publish/cmpilato-playground/site-banner.html (original) +++ subversion/site/publish/cmpilato-playground/site-banner.html Tue Jan 12 13:59:52 2010 @@ -1,3 +1,4 @@ +<div id="site-banner"> <div class="notice"> <p>This is a placeholder document for the <strong>Apache Subversion</strong> project, a podling currently in the @@ -7,4 +8,5 @@ >http://subversion.apache.org/</a> URL until the dust settles and we've figured out where we want various bits of information to live. Thanks!</p> -</div> +</div> <!-- .notice --> +</div> <!-- #site-banner --> Modified: subversion/site/publish/cmpilato-playground/site-footer.html URL: http://svn.apache.org/viewvc/subversion/site/publish/cmpilato-playground/site-footer.html?rev=898324&r1=898323&r2=898324&view=diff ============================================================================== --- subversion/site/publish/cmpilato-playground/site-footer.html (original) +++ subversion/site/publish/cmpilato-playground/site-footer.html Tue Jan 12 13:59:52 2010 @@ -1,7 +1,9 @@ +<div id="site-footer"> <div class="footer"> <p>Copyright © 2009 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0" >Apache License, Version 2.0</a>.<br/> Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p> -</div> +</div> <!-- .footer --> +</div> <!-- #site-footer --> Modified: subversion/site/publish/cmpilato-playground/site-nav.html URL: http://svn.apache.org/viewvc/subversion/site/publish/cmpilato-playground/site-nav.html?rev=898324&r1=898323&r2=898324&view=diff ============================================================================== --- subversion/site/publish/cmpilato-playground/site-nav.html (original) +++ subversion/site/publish/cmpilato-playground/site-nav.html Tue Jan 12 13:59:52 2010 @@ -1,26 +1,26 @@ +<div id="site-nav"> <ul> <li>About Subversion <ul> - <li><a href="/#news">News</a></li> - <li><a href="/documentation.html">Documentation</a></li> - <li><a href="/roadmap.html">Roadmap</a></li> - </ul> + <li><a href="/#news">News</a></li> + <li><a href="/documentation.html">Documentation</a></li> + <li><a href="/roadmap.html">Roadmap</a></li> + </ul> </li> <li>Download <ul> - - <li><a href="/download.cgi">Latest Release</a></li> - <li><a href="/source-code.html">Source Code</a></li> - <li><a href="/earlier-releases.html">Earlier Releases</a></li> - </ul> + <li><a href="/download.cgi">Latest Release</a></li> + <li><a href="/source-code.html">Source Code</a></li> + <li><a href="/earlier-releases.html">Earlier Releases</a></li> + </ul> </li> <li>Community <ul> - <li><a href="/dev/">Developer Resources</a></li> - - <li><a href="/mailing-lists.html">Mailing Lists</a></li> - <li><a href="/getting-involved.html">Getting Involved</a></li> - <li><a href="http://www.apache.org/">ASF</a></li> - </ul> + <li><a href="/dev/">Developer Resources</a></li> + <li><a href="/mailing-lists.html">Mailing Lists</a></li> + <li><a href="/getting-involved.html">Getting Involved</a></li> + <li><a href="http://www.apache.org/">ASF</a></li> + </ul> </li> </ul> +</div> <!-- #site-nav --> Modified: subversion/site/publish/cmpilato-playground/site.css URL: http://svn.apache.org/viewvc/subversion/site/publish/cmpilato-playground/site.css?rev=898324&r1=898323&r2=898324&view=diff ============================================================================== --- subversion/site/publish/cmpilato-playground/site.css (original) +++ subversion/site/publish/cmpilato-playground/site.css Tue Jan 12 13:59:52 2010 @@ -1,3 +1,39 @@ +/* +** High-level HTML Defaults +*/ + +body { + background-color: white; +} + +/* +** Page Elements +*/ + +#site-banner { + height: 100px; +} +#site-nav { + position: absolute; + top: 100px; + left: 0px; + width: 15em; + bottom: 0px; + padding: 0px; + background-color: rgb(220,220,220); +} +#site-content { + position: absolute; + top: 100px; + left: 15em; + right: 0px; +} +#site-footer { +} + +/* +** Customizations +*/ .notice { background-color: yellow; margin: 0 5em;