-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresults.html
More file actions
28 lines (23 loc) · 797 Bytes
/
Copy pathresults.html
File metadata and controls
28 lines (23 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{% extends "layout.html" %}
{% block title %}
Results
{% endblock %}
{% block content %}
<h3>Search Results</h3>
<div class="dropdown-divider"></div>
<div class="container results-container">
{% for book in books %}
<div class="card border-primary mb-3" style="width: 12rem">
<div class="card-body">
<h4 class="card-title">{{book['title']}}</h4>
<h6 class="card-text">{{book['author']}}</h6>
<h6 class="card-text">{{book['year']}}</h6>
<h6 class="card-text">{{book['isbn']}}</h6>
</div>
<div class="card-footer">
<a href="/book/{{book['isbn']}}" class="card-link">Go to book page</a>
</div>
</div>
{% endfor %}
</div>
{% endblock %}