diff --git a/scipost/templates/scipost/claim_authorships.html b/scipost/templates/scipost/claim_authorships.html
index 00f7afdfcaf171b0578e5fadeac8a55eca09cf19..8a774d4378e36742c6786cc783f4678f543d93c6 100644
--- a/scipost/templates/scipost/claim_authorships.html
+++ b/scipost/templates/scipost/claim_authorships.html
@@ -1,4 +1,9 @@
-{% extends 'scipost/base.html' %}
+{% extends 'scipost/_personal_page_base.html' %}
+
+{% block breadcrumb_items %}
+    {{block.super}}
+    <span class="breadcrumb-item">Authorship Claims</span>
+{% endblock %}
 
 {% block pagetitle %}: authorship claims{% endblock pagetitle %}
 
@@ -24,7 +29,7 @@
     <div class="row">
         <div class="col-12">
             {% for pub in publication_authorships_to_claim %}
-                <div class="card">
+                <div class="card card-grey card-publication" id="{{pub.doi_label}}">
                   {% include 'journals/_publication_card_content.html' with publication=pub %}
                     <div class="card-footer">
                         <form class="d-inline-block" action="{% url 'scipost:claim_pub_authorship' publication_id=pub.id claim=1 %}" method="post">
@@ -127,7 +132,7 @@
     </div>
 {% endif %}
 
-{% if not submission_authorships_to_claim and not commentary_authorships_to_claim and not thesis_authorships_to_claim %}
+{% if not submission_authorships_to_claim and not commentary_authorships_to_claim and not thesis_authorships_to_claim and not publication_authorships_to_claim %}
 <div class="row">
     <div class="col-12">
         <h2>You have no authorships to claim</h2>