We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c674d41 commit 865f6f9Copy full SHA for 865f6f9
club.html
@@ -21,10 +21,17 @@ <h3><strong>Books Completed:</strong></h3>
21
<div class="book">
22
<h2>{{ book.title }}</h2>
23
<p><strong>Author:</strong> {{ book.author }}</p>
24
- {% if book.cover %}
25
- <img src="{{ book.cover }}" alt="Cover of {{ book.title }}" />
+
+ <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>
34
{% endif %}
- <p><strong>Summary:</strong> {{ book.summary }}</p>
35
</div>
36
{% endfor %}
37
0 commit comments