{% extends "base.html" %} {% from 'partials/_buttons.html' import button %} {% from 'partials/_panels.html' import simple_panel %} {% block title %}{{ page_title }} - MTG Deckbuilder{% endblock %} {% block content %} {% if guides %}
{% for guide in guides %}

{{ guide.title }}

{% if guide.description %}

{{ guide.description }}

{% endif %}
{{ button('Read Guide →', variant='ghost', href='/help/' + guide.name, size='sm') }}
{% endfor %}
{% else %}

No documentation guides available.

{% endif %} {% endblock %}