chore: cleanup
This commit is contained in:
parent
0fb0c9d65f
commit
26572cef9c
3 changed files with 8 additions and 5 deletions
|
@ -48,6 +48,9 @@ schema: book
|
||||||
<p class="sub-meta"><a href="https://openlibrary.org/isbn/{{ book.isbn }}" title="View {{ book.title | escape }} on Open Library">View on Open Library</a></p>
|
<p class="sub-meta"><a href="https://openlibrary.org/isbn/{{ book.isbn }}" title="View {{ book.title | escape }} on Open Library">View on Open Library</a></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% if book.review %}{{ book.review | markdown }}{% endif %}
|
{% if book.review %}
|
||||||
{% if book.description %}<p><em>{{ book.description }}</em></p>{% endif %}
|
{{ book.review | markdown }}
|
||||||
|
<hr class="large-spacing" />
|
||||||
|
{% endif %}
|
||||||
|
{% if book.description %}<em>{{ book.description }}</em>{% endif %}
|
||||||
</article>
|
</article>
|
|
@ -42,5 +42,5 @@ schema: movie
|
||||||
{{ movie.review | markdown }}
|
{{ movie.review | markdown }}
|
||||||
<hr class="large-spacing" />
|
<hr class="large-spacing" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if movie.description %}<p><em>{{ movie.description }}</em></p>{% endif %}
|
{% if movie.description %}<em>{{ movie.description }}</em>{% endif %}
|
||||||
</article>
|
</article>
|
|
@ -38,8 +38,8 @@ schema: show
|
||||||
<p class="sub-meta"><a href="https://themoviedb.org/tv/{{ show.tmdb_id }}" title="View {{ show.title | escape }} on TMDB">View on TMDB</a></p>
|
<p class="sub-meta"><a href="https://themoviedb.org/tv/{{ show.tmdb_id }}" title="View {{ show.title | escape }} on TMDB">View on TMDB</a></p>
|
||||||
</div>
|
</div>
|
||||||
{% if show.review %}
|
{% if show.review %}
|
||||||
<p>{{ show.review | markdown }}</p>
|
{{ show.review | markdown }}
|
||||||
<hr class="large-spacing" />
|
<hr class="large-spacing" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if show.description %}<p><em>{{ show.description }}</em></p>{% endif %}
|
{% if show.description %}<em>{{ show.description }}</em>{% endif %}
|
||||||
</article>
|
</article>
|
Reference in a new issue