You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by ma...@apache.org on 2012/01/27 08:17:44 UTC

svn commit: r1236553 - /ace/site/trunk/templates/skeleton.html

Author: marrs
Date: Fri Jan 27 07:17:44 2012
New Revision: 1236553

URL: http://svn.apache.org/viewvc?rev=1236553&view=rev
Log:
Cleaned up the template.

Modified:
    ace/site/trunk/templates/skeleton.html

Modified: ace/site/trunk/templates/skeleton.html
URL: http://svn.apache.org/viewvc/ace/site/trunk/templates/skeleton.html?rev=1236553&r1=1236552&r2=1236553&view=diff
==============================================================================
--- ace/site/trunk/templates/skeleton.html (original)
+++ ace/site/trunk/templates/skeleton.html Fri Jan 27 07:17:44 2012
@@ -19,28 +19,22 @@
   </head>
 
   <body>
-    <div id="page" class="container_16">
-      <div id="header" class="grid_8">
-        <img src="http://www.apache.org/images/feather-small.gif" alt="The Apache Software Foundation">
-        <h1>The Apache Software Foundation</h1>
-        <h2>{% block tagline %}{{ headers.title }}{% endblock %}</h2>
+    <div class="topbar">
+      <div class="fill">
+        <div class="container">
+          <a class="brand" href="#">Apache ACE</a>
+          {% filter markdown %}{% include "sidenav.mdtext" %}{% endfilter %}
+        </div>
       </div>
-      <div id="nav" class="grid_8">
-        {% filter markdown %}{% include "sidenav.mdtext" %}{% endfilter %}
-        <p>{{ breadcrumbs|safe }}</p>
-        <form name="search" id="search" action="http://www.google.com/search" method="get">
-          <input value="*.apache.org" name="sitesearch" type="hidden"/>
-          <input type="text" name="q" id="query">
-          <input type="submit" id="submit" value="Search">
-        </form>
-      </div>
-      <div class="clear"></div>
-      {% block content %}<div id="content" class="grid_16"><div class="section-content">{{ content|markdown }}</div></div>{% endblock %}
-      <div class="clear"></div>
     </div>
-
-    <div id="copyright" class="container_16">
-      <p>Copyright &#169; 2012 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 class="container">
+      <h1>{% block tagline %}{{ headers.title }}{% endblock %}</h1>
+      <p>{{ breadcrumbs|safe }}</p>
+      <div class="clear"></div>
+      {% block content %}<div id="content">{{ content|markdown }}</div>{% endblock %}
+      <footer>
+        <p>Copyright &#169; 2012 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>
+      </footer>
     </div>
   </body>
 </html>