{% block meta %}{% endblock %}
{% block links %} {% endblock %}
{% include 'header.html' %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{% if category == 'success' %}
Check icon
{% elif category == 'danger' %}
Error icon
{% endif %}
{{message|safe}}
Close
{% endfor %} {% endif %} {% endwith %} {% block body %} {% if current_user.is_authenticated %} {% block right_sidebar %} {% include 'right_sidebar.html' %} {% endblock %} {% include 'book/add_book_modal.html' %} {% endif %}
{% block content %}{% endblock %}
{% endblock %} {% block scripts %} {% endblock %}