Find Cheaper University Textbooks
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.
 
 
 
 
 

47 lines
1.8 KiB

{% extends "bootstrap/base.html" %}
{% block head %}
{{super()}}
<meta name="viewport" content="width=device-width, initial-scale=1">
<header class="nav navbar">
<section class="navbar-section">
<div class="title-div">
<strong>Search For Books - by the
<a href="http://localhost:8001/blog" target="_blank">Guerilla Open Access League</a>
</strong>
</div>
</section>
<section class="navbar-section">
<search class="search-form"></search>
</section>
</header>
{% endblock %}
<html>
<body>
{% block content %}
<results></results>
{% endblock %}
<footer class="footer">
</footer>
{% block styles %}
{{super()}}
<link rel="stylesheet" href="{{ url_for('send_style', filename='spectre.min.css') }}">
<link rel="stylesheet" href="{{ url_for('send_style', filename='search.css') }}">
{% endblock %}
{{ url_for('send_script', filename='') }}
{% block scripts %}
{{super()}}
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/riot/2.4.1/riot+compiler.min.js"></script>
<script type="text/javascript" src="{{ url_for('send_script', filename='jquery-ui-1.11.4.custom/jquery-ui.min.js') }}"></script>
<script type="riot/tag" src="{{ url_for('send_script', filename='search.tag') }}"></script>
<script type="riot/tag" src="{{ url_for('send_script', filename='book.tag') }}"></script>
<script type="riot/tag" src="{{ url_for('send_script', filename='class.tag') }}"></script>
<script type="riot/tag" src="{{ url_for('send_script', filename='row.tag') }}"></script>
<script type="riot/tag" src="{{ url_for('send_script', filename='results.tag') }}"></script>
<script type="text/javascript" src="{{ url_for('send_script', filename='search.js') }}"></script>
{% endblock %}
</body>
</html>