Added: shindig/site/trunk/cms/trunk/templates/navbar.html URL: http://svn.apache.org/viewvc/shindig/site/trunk/cms/trunk/templates/navbar.html?rev=1328168&view=auto ============================================================================== --- shindig/site/trunk/cms/trunk/templates/navbar.html (added) +++ shindig/site/trunk/cms/trunk/templates/navbar.html Fri Apr 20 01:21:52 2012 @@ -0,0 +1,73 @@ +<div class="nav-collapse"> + <ul class="nav"> + <li class="dropdown"> + <a class="dropdown-toggle" data-toggle="dropdown" href="#menu1"> + Get Shindig + <b class="caret"></b> + </a> + <ul class="dropdown-menu"> + <li><a href="download.html">Download</a></li> + <li><a href="license.html">License</a></li> + </ul> + </li> + <li class="dropdown"> + <a class="dropdown-toggle" data-toggle="dropdown" href="#menu1"> + About Shindig + <b class="caret"></b> + </a> + <ul class="dropdown-menu"> + <li><a href="#">Overview</a></li> + <li><a href="#">Getting Started</a></li> + <li><a href="#">FAQ</a></li> + <li><a href="#">Resources</a></li> + <li><a href="#">Powered By</a></li> + </ul> + </li> + <li class="dropdown"> + <a class="dropdown-toggle" data-toggle="dropdown" href="#menu1"> + Documentation + <b class="caret"></b> + </a> + <ul class="dropdown-menu"> + <li><a href="#">Centre</a></li> + <li><a href="#">Java</a></li> + <li><a href="#">PHP</a></li> + <li><a href="#">Features</a></li> + </ul> + </li> + <li class="dropdown"> + <a class="dropdown-toggle" data-toggle="dropdown" href="#menu1"> + Community + <b class="caret"></b> + </a> + <ul class="dropdown-menu"> + <li><a href="#">Overview</a></li> + <li><a href="#">Getting Help</a></li> + <li><a href="#">Issue Tracking</a></li> + <li><a href="#">Source Repository</a></li> + <li><a href="#">Wiki</a></li> + <li><a href="#">The Shindig Team</a></li> + </ul> + </li> + <li class="dropdown"> + <a class="dropdown-toggle" data-toggle="dropdown" href="#menu1"> + Misc + <b class="caret"></b> + </a> + <ul class="dropdown-menu"> + <li><a href="#">Apache</a></li> + <li><a href="#">Sponsorship</a></li> + <li><a href="#">Thanks</a></li> + </ul> + </li> + <li class="dropdown"> + <a class="dropdown-toggle" data-toggle="dropdown" href="#menu1"> + Project Doc + <b class="caret"></b> + </a> + <ul class="dropdown-menu"> + <li><a href="#">Project Information</a></li> + </ul> + </li> + </ul> + </div><!--/.nav-collapse --> \ No newline at end of file
Added: shindig/site/trunk/cms/trunk/templates/single_narrative.html URL: http://svn.apache.org/viewvc/shindig/site/trunk/cms/trunk/templates/single_narrative.html?rev=1328168&view=auto ============================================================================== --- shindig/site/trunk/cms/trunk/templates/single_narrative.html (added) +++ shindig/site/trunk/cms/trunk/templates/single_narrative.html Fri Apr 20 01:21:52 2012 @@ -0,0 +1 @@ +{% extends "skeleton.html" %} Added: shindig/site/trunk/cms/trunk/templates/skeleton.html URL: http://svn.apache.org/viewvc/shindig/site/trunk/cms/trunk/templates/skeleton.html?rev=1328168&view=auto ============================================================================== --- shindig/site/trunk/cms/trunk/templates/skeleton.html (added) +++ shindig/site/trunk/cms/trunk/templates/skeleton.html Fri Apr 20 01:21:52 2012 @@ -0,0 +1,82 @@ +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE- 2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Shindig - {% block title %}{{ headers.title }}{% endblock %}</title> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="description" content=""> + <meta name="author" content=""> + + <!-- Le styles --> + <link href="bootstrap/css/bootstrap.css" rel="stylesheet"> + <style type="text/css"> + body { + padding-top: 60px; + padding-bottom: 40px; + } + </style> + <link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet"> + + <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements --> + <!--[if lt IE 9]> + <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script> + <![endif]--> + + <!-- Le fav and touch icons --> + <link rel="shortcut icon" href="images/favicon.ico"> + <link rel="apple-touch-icon" href="images/apple-touch-icon.png"> + <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> + <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> + </head> + + <body> + + <div class="navbar navbar-fixed-top"> + <div class="navbar-inner"> + <div class="container"> + <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + </a> + <a class="brand" href="index.html">Apache Shindig</a> + {% include "navbar.html" %} + </div> + </div> + </div> + + <div class="container"> + {% block content %}{{ content|markdown }}{% endblock %} + <hr> + + <footer> + <p>Copyright © 2007-2012 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.</p> + </footer> + + </div> <!-- /container --> + + <!-- Le javascript + ================================================== --> + <!-- Placed at the end of the document so the pages load faster --> + <script src="jquery/js/jquery-1.7.1.min.js"></script> + <script src="bootstrap/js/bootstrap.min.js"></script> + + </body> +</html>
