You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2012/01/10 19:52:32 UTC

svn commit: r1229682 - /jackrabbit/site/trunk/templates/skeleton.html

Author: jukka
Date: Tue Jan 10 18:52:32 2012
New Revision: 1229682

URL: http://svn.apache.org/viewvc?rev=1229682&view=rev
Log:
JCRSITE-37: Migrate web site from Confluence to Apache CMS

Adapt site template from Confluence

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

Modified: jackrabbit/site/trunk/templates/skeleton.html
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/templates/skeleton.html?rev=1229682&r1=1229681&r2=1229682&view=diff
==============================================================================
--- jackrabbit/site/trunk/templates/skeleton.html (original)
+++ jackrabbit/site/trunk/templates/skeleton.html Tue Jan 10 18:52:32 2012
@@ -1,56 +1,53 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE html>
 <html lang="en">
   <head>
     <title>{% block title %}{{ headers.title }}{% endblock %}</title>
 
-    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
-    <meta property="og:image" content="http://www.apache.org/images/asf_logo.gif" />
+    <link rel="stylesheet" type="text/css" href="style/site.css">
 
-    <link rel="stylesheet" type="text/css" media="screen" href="http://www.apache.org/css/style.css">
-    <link rel="stylesheet" type="text/css" media="screen" href="http://www.apache.org/css/code.css">
-
-    </style>
-
-    {% if headers.atom %}
-      <link rel="alternate" href="{{ headers.atom.url }}"
-            type="application/atom+xml" title="{{ headers.atom.title }}" />
-    {% endif %}
-
-    {% if headers.base %}<base href="{{ headers.base }}" />{% endif %}
-    {% if headers.notice %}<!-- {{ headers.notice }} -->{% endif %}
+{% if headers.atom %}
+    <link rel="alternate" href="{{ headers.atom.url }}"
+          type="application/atom+xml" title="{{ headers.atom.title }}" />
+{% endif %}
+{% if headers.base %}
+    <base href="{{ headers.base }}" />
+{% endif %}
+{% if headers.notice %}
+<!--
+{{ headers.notice }}
+-->
+{% endif %}
   </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 id="page">
+      <div id="header">
+        <p id="jcr"><a href="/"><img
+          src="style/jlogo.gif" alt="Apache Jackrabbit"
+          height="100" width="336"></a></p>
+        <p id="asf"><a href="http://www.apache.org/"><img
+          src="style/asf-logo.gif" alt="Apache Software Foundation"
+          height="100" width="387"></a></p>
       </div>
-      <div id="nav" class="grid_8">
-        <ul>
-          <!-- <li><a href="/" title="Welcome!">Home</a></li> -->
-          <li><a href="http://www.apache.org/foundation/" title="The Foundation">Foundation</a></li>
-          <li><a href="http://projects.apache.org" title="The Projects">Projects</a></li>
-          <li><a href="http://people.apache.org" title="The People">People</a></li>
-          <li><a href="http://www.apache.org/foundation/getinvolved.html" title="Get Involved">Get Involved</a></li>
-          <li><a href="http://www.apache.org/dyn/closer.cgi" title="Download">Download</a></li>
-          <li><a href="http://www.apache.org/foundation/sponsorship.html" title="Support Apache">Support Apache</a></li>
-        </ul>
-        <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 id="body">
+        <div id="navigation">
+        </div>
+        <div id="content">
+          {% block content %}{{ content|markdown }}{% endblock %}
+        </div>
+        <div id="end"></div>
+      </div>
+      <div id="footer">
+        <p>
+          &copy; 2004-2012 The Apache Software Foundation.
+          - <a href="privacy-policy.html">Privacy Policy</a> -
+          [<a href="$confluenceUri/pages/editpage.action?pageId=$page.id">edit this page</a>]
+          <br>
+          Apache Jackrabbit, Jackrabbit, Apache, the Apache feather logo,
+          and the Apache Jackrabbit project logo are trademarks of
+          The Apache Software Foundation.
+        </p>
       </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; 2011 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>
   </body>
 </html>