Added: labs/panopticon/src/asf/panopticon/templates/layout.html URL: http://svn.apache.org/viewvc/labs/panopticon/src/asf/panopticon/templates/layout.html?rev=1522629&view=auto ============================================================================== --- labs/panopticon/src/asf/panopticon/templates/layout.html (added) +++ labs/panopticon/src/asf/panopticon/templates/layout.html Thu Sep 12 15:38:25 2013 @@ -0,0 +1,96 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + {% block head %} + <meta charset="utf-8"> + <title>{% block title %}anopticon{% endblock title %}</title> + <meta name="description" content=""> + <meta name="author" content=""> + + <!-- Le styles --> + <link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet"> + <link href="{{ url_for('static', filename='css/panopticon.css') }}" rel="stylesheet"> + + <!-- Le fav and touch icons --> + <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}" type="image/x-icon"> + <link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}" type="image/x-icon"> + + <!-- Le HTML5 shim, for IE6-8 support of HTML elements --> + <!--[if lt IE 9]> + <script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script> + <![endif]--> + {% endblock head %} +</head> + +<body data-spy="scroll" data-target=".topbar" data-offset="90"> + +<!-- Begin page content --> +<!-- Wrap all page content here --> +<div id="wrap"> + + <!-- Fixed navbar --> + <div class="navbar navbar-inverse navbar-fixed-top"> + <div class="container"> + <div class="navbar-header"> + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + </button> + <a class="navbar-brand" href="#">Panopticon</a> + </div> + <div class="collapse navbar-collapse"> + <ul class="nav navbar-nav"> + <li class="active"><a href="#">Home</a></li> + <li><a href="#about">About</a></li> + <li><a href="#contact">Contact</a></li> + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a> + <ul class="dropdown-menu"> + <li><a href="#">Action</a></li> + <li><a href="#">Another action</a></li> + <li><a href="#">Something else here</a></li> + <li class="divider"></li> + <li class="dropdown-header">Nav header</li> + <li><a href="#">Separated link</a></li> + <li><a href="#">One more separated link</a></li> + </ul> + </li> + </ul> + <form class="navbar-form navbar-right"> + <div class="form-group"> + <input type="text" placeholder="Apache Id" class="form-control"> + </div> + <div class="form-group"> + <input type="password" placeholder="Password" class="form-control"> + </div> + <button type="submit" class="btn btn-success">Sign in</button> + </form> + </div> + <!--/.nav-collapse --> + </div> + </div> + + <div class="container"> + <div class="page-header"> + <h1>Sticky footer with fixed navbar</h1> + </div> + <p class="lead">Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS. A fixed navbar has been added within <code>#wrap</code> with <code>padding-top: 60px;</code> on the <code>.container</code>.</p> + + <p>Back to <a href="../sticky-footer">the default sticky footer</a> minus the navbar.</p> + </div> +</div> + +<div id="footer"> + <div class="container"> + <p class="text-muted credit"> + Copyright © 2013 <a href="http://apache.irg">Apache Software Foundation</a>, 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> +<script src="//code.jquery.com/jquery.js"></script> +<script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script> +</body> +</html>
--------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
