generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaterial_page.html
36 lines (32 loc) · 1.07 KB
/
material_page.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
29
30
31
32
33
34
35
36
{% extends "base.html" %}
{% block content %}
{% for material in material_obj %}
<div class="row justify-content-center">
<div class="col-12">
<div class="card p-3 mb-5 bg-body">
<img src="{{material.example}}" class="card-img-top review-image"
alt="{{material.material_name}} example image">
<div class="card-body">
<h3 class="card-title text-center">What is {{material.material_name}} filament?</h3>
<p class="card-text"> {{material.material_description}}
</p>
</div>
</div>
</div>
</div>
<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>
Reviews of {{material.material_name}} Filament:
</h3>
</div>
</div>
</div>
{% endfor %}
<div class="row row-cols-1 row-cols-md-2 g-4">
{% for review in reviews %}
{% include 'reviews.html' %}
{% endfor %}
</div>
{% endblock %}