This repository has been archived on 2024-01-11. You can view files and clone it, but cannot push or open issues or pull requests.
library/templates/index.html

23 lines
565 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="title">
<h1><b>Library</b> of South London</h1>
<p>bad advice from people who don't know anything.</p>
</div>
<div>
<input id="search"
class="search"
type="text"
placeholder="&#128269; looking for something?">
<div class="search-results">
<div class="search-results__items"></div>
</div>
</div>
<script src="/elasticlunr.min.js"></script>
<script src="/search_index.en.js"></script>
<script src="/search.js"></script>
{% endblock content %}