Hey all,
You may have seen this come by yesterday. I'm working on putting
together a bootstrap-based version of the site, and now that I've
learned how to use the CMS, I'm excited to make some progress.
It turns out however, that we've got a problem with our CMS. It was
created back when we were incubating and is still pointing to the
incubator trunk. This currently causes some nasty surprises when trying
to update from within the CMS tool. I chatted with the infra folks and
they told me we need to file an issue to get it migrated to the new
top-level home.
I've filed INFRA-5532 (https://issues.apache.org/jira/browse/INFRA-5532)
to track this, and will continue with the CMS editing once everything is
in its right place.
Best,
Andrew.
On 11/15/2012 08:04 AM, [email protected] wrote:
Author: ahart
Date: Thu Nov 15 16:04:23 2012
New Revision: 1409860
URL: http://svn.apache.org/viewvc?rev=1409860&view=rev
Log:
initial work on an alternative skeleton template based on the Bootstrap library
Added:
sis/site/trunk/templates/skeleton-alt.html
Added: sis/site/trunk/templates/skeleton-alt.html
URL:
http://svn.apache.org/viewvc/sis/site/trunk/templates/skeleton-alt.html?rev=1409860&view=auto
==============================================================================
--- sis/site/trunk/templates/skeleton-alt.html (added)
+++ sis/site/trunk/templates/skeleton-alt.html Thu Nov 15 16:04:23 2012
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<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 href="./assets/libs/bootstrap/css/bootstrap.min.css" rel="stylesheet">
+
+<script href="./assets/libs/bootstrap/js/bootstrap.min.js"></script>
+
+ {% 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">
+<div class="row">
+<div id="header" class="span12">
+<img src="http://www.apache.org/images/feather-small.gif" alt="The Apache Software
Foundation">
+<h1>Apache Spatial Information Systems</h1>
+<h2>{% block tagline %}{{ headers.title }}{% endblock %}</h2>
+</div>
+</div>
+<div class="row">
+<div id="nav" class="span12">
+<p>{{ breadcrumbs|safe }}</p>
+<form name="search" id="search" action="http://www.google.com/search"
method="get">
+<input value="sis.apache.org" name="sitesearch" type="hidden"/>
+<input type="text" name="q" id="query">
+<input type="submit" id="submit" value="Search">
+</form>
+</div>
+</div>
+<div class="row">
+ {% block nav %}
+<div id="menu" class="span3 bs-docs-sidebar" data-spy="affix"
data-offset-top="200">
+<ul class="nav nav-list bs-docs-sidenav">
+<li><a href="#">About<a></li>
+<li><a href="#">Continuous Integration</a></li>
+</ul>
+</div>
+ {% endblock %}
+ {% block content %}
+<div id="content" class="span9 pull3">
+<div class="section-content">{{ content|markdown }}</div>
+</div>
+ {% endblock %}
+</div>
+</div>
+
+<div id="copyright" class="container">
+<div class="row">
+<p>Copyright© 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>
+</div>
+</body>
+</html>