{% extends "base.html" %} {% load url %} {% load static %} {% load humanize %} {% load cache %} {% cache 600 homepage %} {% block content %} {% if news_caroussel_items %}
{% endif %} {% if highlighted_challenges %}
  FEATURED CHALLENGES
{% include "grandchallenge/partials/cards.html" with page_obj=highlighted_challenges %} {% endif %} {% if highlighted_algorithms %}
  FEATURED ALGORITHMS
{% include "grandchallenge/partials/cards.html" with page_obj=highlighted_algorithms %} {% endif %}

Features

{% for highlight in highlights %}

{{ highlight.title }}

    {% for point in highlight.bullet_points %}
  • {{ point }}
  • {% endfor %}
{{ highlight.url_title }} Image
{% endfor %}
{% include "grandchallenge/partials/cards_info_modal.html" %} {% endblock %} {% endcache %} {% block script %} {{ block.super }} {% endblock %}