{% extends "base.html" %} {% load static %} {% load markdown_extras %} {% block title %} Alphabet 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 #}
Standard resources
{% for resource in page_obj.object_list %}
{% include "resources/resource_card_standard.html" with resource=resource %}
{% endfor %}
{# Pagination #} {% if page_obj.has_other_pages %}
{% endif %} {% endblock content %}