{% extends "base.html" %} {% block title %}{{ site.brand }} -- Decks{% endblock %} {% block content %} {% if not registry.sections %}

No decks yet. Run simplex new my-deck to create one.

{% else %} {% if latest_section %} {% set section = latest_section %} {% set carousel_variant = "latest" %} {% include "_carousel.html" %} {% endif %} {% set carousel_variant = "section" %} {% for section in registry.sections %} {% include "_carousel.html" %} {% endfor %} {% endif %} {% endblock %}