{% extends "base.html" %} {% load static %} {% load markdown_extras %} {% block title %} Joanna Lemon Learning - Resource List {% endblock title %} {% block content %}
{% include "resources/admin_bar.html" %}
{# featured resources #} {% if featured_resources %}
Featured resources
{% for featured_resource in featured_resources %} {% if featured_resources|length == 1 %}
{% elif featured_resources|length == 2 %}
{% elif featured_resources|length == 3 %}
{% endif %} {% include "resources/resource_card_featured.html" with resource=featured_resource %}
{% endfor %}
{% else %}

There are no featured resources

{% endif %} {# standard resources #} {% if page_obj.object_list %}
Standard resources
{% for resource in page_obj.object_list %} {% include "resources/resource_card_standard.html" with resource=resource %} {% endfor %}
{% if page_obj.has_other_pages %}
{% endif %} {% else %}

There are no resources

{% endif %} {% endblock content %}