moviewyrm/bookwyrm/templates/shelf.html

21 lines
664 B
HTML
Raw Normal View History

2020-02-22 00:03:05 +00:00
{% extends 'layout.html' %}
{% block content %}
<div class="block">
<nav class="breadcrumb has-succeeds-separator" aria-label="breadcrumbs">
<ul>
<li><a href="/user/{{ user.username }}">{% include 'snippets/username.html' with user=user %}</a></li>
<li><a href="/user/{{ user.username }}/shelves">Shelves</a></li>
<li class="is-active"><a href="#" aria-current="page">{{ shelf.name }}</a></li>
</ul>
</nav>
</div>
2020-09-29 21:11:55 +00:00
<div class="block">
2020-02-22 00:03:05 +00:00
<div>
<h2 class="title">{{ shelf.name }}</h2>
2020-02-22 00:03:05 +00:00
{% include 'snippets/shelf.html' with shelf=shelf ratings=ratings %}
</div>
</div>
{% endblock %}