{# Coffee House Empty State Component. Usage: {% with empty_icon="inbox", empty_title="No articles yet", empty_desc="Create your first article to get started", empty_cta_label="New Article", empty_cta_href="/articles/new" %} {% include "components/empty_state.html" %} {% endwith %} Icons: "inbox", "search", "document", "users", "chart" (default: "inbox") #}
{% set icon = empty_icon | default("inbox") %} {% if icon == "search" %} {% elif icon == "document" %} {% elif icon == "users" %} {% elif icon == "chart" %} {% else %} {% endif %}

{{ empty_title | default("Nothing here yet") }}

{% if empty_desc is defined and empty_desc %}

{{ empty_desc }}

{% endif %} {% if empty_cta_label is defined and empty_cta_label %} {{ empty_cta_label }} {% endif %}