36 lines
1.9 KiB
HTML
36 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<!-- Bootstrap core CSS -->
|
|
<!-- Thanks, https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xii-facelift and
|
|
https://scotch.io/tutorials/getting-started-with-flask-a-python-microframework -->
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
|
|
<!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">-->
|
|
<!-- Custom styles for this template -->
|
|
<link href="https://getbootstrap.com/examples/jumbotron-narrow/jumbotron-narrow.css" rel="stylesheet">
|
|
<!--<link href="https://getbootstrap.com/docs/4.0/examples/offcanvas/offcanvas.css" rel="stylesheet">-->
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header clearfix">
|
|
<nav>
|
|
<ul class="nav nav-pills pull-right">
|
|
<li role="presentation"><a href="/">Home</a></li>
|
|
<li role="presentation"><a href="/about">About</a></li>
|
|
<li role="presentation"><a href="/usage">Usage</a></li>
|
|
<!-- the following opens in a new tab/window/whatever. the line after opens in the same tab/window/etc. -->
|
|
<!-- <li role="presentation"><a href="https://square-r00t.net/" target="_blank">r00t^2</a></li> -->
|
|
<li role="presentation"><a href="https://square-r00t.net/">r00t^2</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
{% block body %}{% endblock %}
|
|
<footer class="footer">
|
|
<p><sub>The code for this page is released under the <a href="https://www.gnu.org/licenses/gpl-3.0.en.html#content">GPL 3.0 License</a>. It can be found <a href="https://git.square-r00t.net/OpTools/tree/net">here</a>.</sub></p>
|
|
</footer>
|
|
</div>
|
|
<!-- /container -->
|
|
</body>
|
|
</html>
|