2018-12-14 01:58:59 +00:00
|
|
|
<!DOCTYPE html>
|
2018-12-15 21:12:17 +00:00
|
|
|
{% load static %}
|
2019-01-11 22:40:12 +00:00
|
|
|
{% load navbar %}
|
2018-12-14 01:58:59 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2018-12-15 21:12:17 +00:00
|
|
|
<link rel="shortcut icon" type="image/png" href="{% static 'GeoffreyApp/img/icon.png' %}"/>
|
2018-12-14 01:58:59 +00:00
|
|
|
<meta charset="UTF-8">
|
2019-01-14 01:27:48 +00:00
|
|
|
{% block title %}<title>Geoffrey</title>{% endblock %}
|
2019-01-11 22:40:12 +00:00
|
|
|
|
2019-01-12 21:06:06 +00:00
|
|
|
{% load static %}
|
|
|
|
<link rel="stylesheet" href="{% static 'GeoffreyApp/css/bootstrap.css' %}">
|
|
|
|
|
2019-01-11 22:40:12 +00:00
|
|
|
<!-- jQuery library -->
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
|
|
|
|
|
|
|
<!-- Popper JS -->
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
|
|
|
|
|
|
|
|
<!-- Latest compiled JavaScript -->
|
|
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
|
2019-01-12 21:06:06 +00:00
|
|
|
|
|
|
|
<!-- Datatables -->
|
|
|
|
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap4.min.css">
|
|
|
|
|
|
|
|
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
|
|
|
|
<script type="text/javascript" language="javascript"
|
|
|
|
src="https://cdn.datatables.net/1.10.19/js/dataTables.bootstrap4.min.js"></script>
|
|
|
|
|
2018-12-14 01:58:59 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2019-01-14 01:27:48 +00:00
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-dark sticky-top">
|
2019-01-11 22:40:12 +00:00
|
|
|
<a href="#" class="navbar-left"><img src="{% static 'GeoffreyApp/img/icon.png' %}" height="30px" alt="sed"></a>
|
|
|
|
<a class="navbar-brand" href="#">Geoffrey</a>
|
|
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar"
|
|
|
|
aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<div class="collapse navbar-collapse" id="navbar">
|
|
|
|
<ul class="navbar-nav mr-auto">
|
|
|
|
{% autoescape off %}{% get_navbar current_page|safe %}{% endautoescape %}
|
2018-12-14 01:58:59 +00:00
|
|
|
</ul>
|
2019-01-12 21:06:06 +00:00
|
|
|
|
2019-01-11 22:40:12 +00:00
|
|
|
<form class="form-inline my-2 my-lg-0" id="searchform" action="{% url 'GeoffreySearch' %}">
|
2019-01-12 21:06:06 +00:00
|
|
|
<input class="form-control mr-sm-2" name="search" type="text" placeholder="Find a Location...">
|
2019-01-11 22:40:12 +00:00
|
|
|
<button class="btn btn-secondary my-2 my-sm-0" type="submit">Search</button>
|
|
|
|
{% block search %}{% endblock %}
|
|
|
|
</form>
|
2018-12-14 01:58:59 +00:00
|
|
|
</div>
|
2019-01-11 22:40:12 +00:00
|
|
|
</nav>
|
|
|
|
|
2019-01-12 21:06:06 +00:00
|
|
|
<div class="container">
|
|
|
|
<h1>{% block header %}{% endblock %}</h1>
|
2019-01-11 22:40:12 +00:00
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
2018-12-14 01:58:59 +00:00
|
|
|
</body>
|
|
|
|
</html>
|