diff options
Diffstat (limited to 'design/templates/details')
-rw-r--r-- | design/templates/details/book.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/design/templates/details/book.html b/design/templates/details/book.html index 808d253..8a87ae5 100644 --- a/design/templates/details/book.html +++ b/design/templates/details/book.html @@ -46,7 +46,7 @@ {% if object.bookhighlight_set.all %} <div class="highlights"> <h4>Highlights:</h4> - {% for object in object.bookhighlight_set.all reversed %} + {% for object in object.bookhighlight_set.all %} <div class="h-entry hentry post--article book"> <a class="highlink" id="h{{forloop.counter}}-page-{{object.page}}" href="#h{{forloop.counter}}-page-{{object.page}}">¶</a> <div class="book-highlight"> @@ -59,4 +59,8 @@ {%endif%} </main> {% endblock %} - +{% block disclaimer %} +<div class="highlights"> + <p class="dis"><em>When you buy a book using the link above, I may earn a small affiliate commission.</em></p> +</div> +{% endblock %} |