You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
|
<!-- Bootstrap-->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css">
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400" rel="stylesheet">
|
|
|
|
<!-- Custom styles -->
|
|
<link rel="stylesheet" href="{% static 'css/style.css' %}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
<div class="wrapper-content">
|
|
{% include 'navbar.html' %}
|
|
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</div>
|
|
</div>
|
|
<!--{% include 'footer.html' %}-->
|
|
|
|
<!-- jQuery -->
|
|
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
<!--<script src="{% static 'js/jquery.min.js' %}"></script>-->
|
|
<!-- Latest compiled and minified JavaScript -->
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
|
|
|
|
<script src="{% static 'js/scripts.js' %}"></script>
|
|
<script src="{% static 'js/jquery.autocomplete.js' %}"></script>
|
|
<script src="{% static 'js/our_search_code.js' %}"></script>
|
|
<!--<script src="{% static 'js/ajax.js' %}"></script>-->
|
|
</body>
|
|
</html> |