Skip to content

Commit 865f6f9

Browse files
authored
Update club.html
1 parent c674d41 commit 865f6f9

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

club.html

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,17 @@ <h3><strong>Books Completed:</strong></h3>
2121
<div class="book">
2222
<h2>{{ book.title }}</h2>
2323
<p><strong>Author:</strong> {{ book.author }}</p>
24-
{% if book.cover %}
25-
<img src="{{ book.cover }}" alt="Cover of {{ book.title }}" />
24+
25+
<h4>Reviews</h4>
26+
{% if book.reviews %}
27+
<ul>
28+
{% for review in book.reviews %}
29+
<li><a href="{{ review.url }}" target="_blank">{{ review.title }}</a> by {{ review.author }}</li>
30+
{% endfor %}
31+
</ul>
32+
{% else %}
33+
<p><em>No reviews available.</em></p>
2634
{% endif %}
27-
<p><strong>Summary:</strong> {{ book.summary }}</p>
2835
</div>
2936
{% endfor %}
3037

0 commit comments

Comments
 (0)