|
@@ -1,21 +1,55 @@
|
|
<!doctype html>
|
|
<!doctype html>
|
|
<html>
|
|
<html>
|
|
<head>
|
|
<head>
|
|
- {% block head %}
|
|
|
|
- <meta charset="utf-8">
|
|
|
|
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
- <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
+ {% block head %}
|
|
|
|
+ <meta charset="utf-8">
|
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
- <title>{% block title %}{% endblock %} :: LAKEsuperior</title>
|
|
|
|
|
|
+ <title>{% block title %}{% endblock %} :: LAKEsuperior</title>
|
|
|
|
|
|
- <link href="{{url_for('ldp.static', filename='assets/css/bootstrap.min.css')}}" rel="stylesheet">
|
|
|
|
- {% endblock %}
|
|
|
|
|
|
+ <link href="{{url_for('ldp.static', filename='assets/css/bootstrap.min.css')}}" rel="stylesheet">
|
|
|
|
+ <link href="{{url_for('ldp.static', filename='assets/css/bootstrap-theme.min.css')}}" rel="stylesheet">
|
|
|
|
+ {% endblock %}
|
|
|
|
+ {% block extra_js %}{% endblock %}
|
|
</head>
|
|
</head>
|
|
<body>
|
|
<body>
|
|
- <div class="container">
|
|
|
|
|
|
+ <nav class="navbar navbar-default">
|
|
|
|
+ <div class="container-fluid">
|
|
|
|
+ <!-- Brand and toggle get grouped for better mobile display -->
|
|
|
|
+ <div class="navbar-header">
|
|
|
|
+ <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
|
|
|
|
+ <span class="sr-only">Toggle navigation</span>
|
|
|
|
+ <span class="icon-bar"></span>
|
|
|
|
+ <span class="icon-bar"></span>
|
|
|
|
+ <span class="icon-bar"></span>
|
|
|
|
+ </button>
|
|
|
|
+ <a class="navbar-brand" href="#">LAKEsuperior</a>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
|
|
|
+ <ul class="nav navbar-nav">
|
|
|
|
+ <li><a href="/ldp">Browse Resources<span class="sr-only">(current)</span></a></li>
|
|
|
|
+ <li class="dropdown">
|
|
|
|
+ <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Query<span class="caret"></span></a>
|
|
|
|
+ <ul class="dropdown-menu">
|
|
|
|
+ <li><a href="/query/term">Term Search</a></li>
|
|
|
|
+ <li><a href="/query/sparql">SPARQL Query</a></li>
|
|
|
|
+ </ul>
|
|
|
|
+ </li>
|
|
|
|
+ </ul>
|
|
|
|
+ <form class="navbar-form navbar-left">
|
|
|
|
+ <div class="form-group">
|
|
|
|
+ <input type="text" class="form-control" placeholder="Search">
|
|
|
|
+ </div>
|
|
|
|
+ <button type="submit" class="btn btn-default">Submit</button>
|
|
|
|
+ </form>
|
|
|
|
+ </div><!-- /.navbar-collapse -->
|
|
|
|
+ </div><!-- /.container-fluid -->
|
|
|
|
+ </nav>
|
|
|
|
+ <main class="container">
|
|
<h1>{{ self.title() }}</h1>
|
|
<h1>{{ self.title() }}</h1>
|
|
{% block content %}{% endblock %}
|
|
{% block content %}{% endblock %}
|
|
- </div>
|
|
|
|
|
|
+ </main>
|
|
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
|
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
|
<script src="{{url_for('ldp.static', filename='assets/js/jquery-3.2.1.min.js')}}"></script>
|
|
<script src="{{url_for('ldp.static', filename='assets/js/jquery-3.2.1.min.js')}}"></script>
|
|
<!-- Include all compiled plugins (below), or include individual files as needed -->
|
|
<!-- Include all compiled plugins (below), or include individual files as needed -->
|