generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaterials.html
28 lines (25 loc) · 998 Bytes
/
materials.html
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 "base.html" %}
{% block content %}
<div class="container">
<div class="row justify-content-center">
<div class="card mt-3 col-10 col-md-8 text-white bg-primary shadow p-1 mb-3 rounded">
<div class="card-body title-card text-center">
<h3>
Choose a material to see reviews of:
</h3>
</div>
</div>
</div>
<div class="row justify-content-center">
{% for material in materials %}
<div class="card m-3 text-center shadow rounded" style="width: 18rem;">
<img src="{{ material.image }}" class="card-img-top material-card" alt="{{ material.material_name }} image">
<div class="card-body">
<a href="{{ url_for('material', material_name=material.path) }}"
class="btn btn-primary stretched-link">{{ material.material_name }}</a>
</div>
</div>
{% endfor %}
</div>
</div>
{% endblock %}