パンくずリストの表示位置について

パンくずリストの表示位置についてお分かりになる方がいましたら、ご教示いただけますと幸いです。

現在、テーマ Craveを使用し、パンくずリストのコードを追加しました。

こちらですと、パンくずリストがヘッダーの上に表示されてしまいます。

理想としては、ヘッダー下にパンくずリストが表示されるようにしたいと考えております。

変更方法が分かる方がいましたら、ご教示いただけますと幸いです。

パンくずリスト コード

{% unless template == ‘index’ or template == ‘cart’ or template == ‘list-collections’ %}

Home {% if template contains 'page' %} {{ page.title }} {% elsif template contains 'product' %} {{ 'コレクション一覧' | link_to: '/collections' }} {% if product.collections[0] %} {{ product.collections[0].title | link_to: product.collections[0].url }} {% endif %} {{ product.title }} {% elsif template contains 'collection' and collection.handle %} {% if current_tags %} {% capture url %}/collections/{{ collection.handle }}{% endcapture %} {{ collection.title | link_to: url }} {{ current_tags | join: " + " }} {% else %} {{ collection.title }} {% endif %} {% elsif template == 'blog' %} {% if current_tags %} {{ blog.title | link_to: blog.url }} {{ current_tags | join: " + " }} {% else %} {{ blog.title }} {% endif %} {% elsif template == 'article' %} {{ blog.title | link_to: blog.url }} {{ article.title }} {% else %} {{ page_title }} {% endif %} {% endunless %}