generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
252 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
{% extends "base.html" %} | ||
{% block content %} | ||
<div class="container"> | ||
<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 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 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 %} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.