{% block title %}
Local Library
{% endblock %}
{% load static %}
{% block sidebar %}
Home
All books
All authors
{% endblock %}
{% block content %}{% endblock %} {% block pagination %} {% if is_paginated %}
{% if page_obj.has_previous %}
previous
{% endif %}
Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}.
{% if page_obj.has_next %}
next
{% endif %}
{% endif %} {% endblock %}