Modified: river/site/trunk/templates/skeleton.html URL: http://svn.apache.org/viewvc/river/site/trunk/templates/skeleton.html?rev=1775684&r1=1775683&r2=1775684&view=diff ============================================================================== --- river/site/trunk/templates/skeleton.html (original) +++ river/site/trunk/templates/skeleton.html Thu Dec 22 17:17:48 2016 @@ -1,7 +1,7 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<html> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html lang="en"> <head> -<!-- + <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with @@ -17,105 +17,51 @@ 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. ---> - - <link href="/css/site.css" rel="stylesheet" type="text/css"> - <link href="/css/type-settings.css" rel="stylesheet" type="text/css"> - <link href="/css/river.css" rel="stylesheet" type="text/css"> - - <!-- - <link href="css/site.css" rel="stylesheet" type="text/css"> - <link href="css/type-settings.css" rel="stylesheet" type="text/css"> - <link href="css/river.css" rel="stylesheet" type="text/css"> --> <title>Apache River - {% block title %}{{ headers.title }}{% endblock %}</title> - - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> + <meta property="og:image" content="//www.apache.org/images/asf_logo.gif"/> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"/> + <link rel="stylesheet" href="/css/bootstrap.css" media="screen"> + <link rel="stylesheet" href="/css/river.css" media="screen"> + <link rel="stylesheet" href="/font-awesome/css/font-awesome.min.css" media="screen"> + <script src="/js/jquery.js"></script> + <script src="/js/bootstrap.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 class="white_box"> -<div class="header"> - <div id="header_background"> - <div id="river_logo"> - <table> - <tbody> - <tr> - <td> - <a href="/"><img alt="river logo" src="/images/apache_river_v2b_small.png"/></a> - </td> - <td> - <div class="title" > - {% block title %}{{ headers.title }}{% endblock %} - </div> - </td> - </tr> - </tbody> - </table> - </div> - </div> -</div> -<div class="content"> - <div class="content_l"> - <div class="content_r"> - <div> - - - <table border="0"> - <tbody> - <tr> - <td style="overflow: hidden;" valign="top" width="100%"> - <div class="wiki-content"> -{% block content %}{{ content|markdown }}{% endblock %} - </div> - </td> - <td valign="top"> - <div class="navigation"> - <div class="navigation_top"> - <div class="navigation_bottom"> -<!-- sidenav --> -{% filter markdown %}{% include "sidenav.mdtext" %}{% endfilter %} -<!-- sidenav --> - </div> - </div> - </div> - </td> - </tr> - </tbody> - </table> - -<!-- - <div class="bottom_red_bar"></div> ---> - </div> - </div> - </div> -</div> -<div class="black_box"> -<div class="footer"> - <div class="footer_l"> - <div class="footer_r"> - <div> - - </div> - </div> - </div> -</div> -</div> + +<body style="padding-top: 50px;"> +<div class="navbar navbar-default navbar-fixed-top"> + {% include "sidenav.html" %} </div> -<!-- -<div class="design_attribution">Page Template Design By Marc Prud'hommeaux based on <a href="http://activemq.apache.org/">ActiveMQ template</a></div> ---> -<div class="copyright_footer"> -<p>Copyright © 2010 - 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"> + <div class="space-lg"></div> + <div class="clear"></div> + {% block content %} + <div id="content">{{ content|markdown }}</div> + {% endblock %} + + <hr> + {% include "footer.html" %} </div> -<!-- -<script src="skeleton_files/urchin.js" type="text/javascript"> -</script> -<script type="text/javascript"> -_uacct = "XXXXX UA-1940143-1"; -urchinTracker(); -</script> ---> -</body></html> +<!-- tooltip delay is too long, but could not find where it is set in the theme or bootstrap --> +<script> +$(document).ready(function(){ + $('a').tooltip({delay: {show: 700, hide: 200}}); +}); +</script> +</body> +</html>
