diff --git a/app/routes.py b/app/routes.py index 869313d..441403c 100644 --- a/app/routes.py +++ b/app/routes.py @@ -159,6 +159,7 @@ def piece(username, collection_slug, piece_slug): if piece is None: return render_404() return render_template("piece.html", + title=piece.name, copyright_holder=ch, collection=collection, piece=piece) diff --git a/app/templates/piece.html b/app/templates/piece.html index 283d80e..a8431a5 100644 --- a/app/templates/piece.html +++ b/app/templates/piece.html @@ -27,8 +27,13 @@ {% endif %} - - + + + + + + + {% endblock %} {% block content %} {% include '_piece.html' %}