Skip to content

Commit

Permalink
added combined card-accordion component (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpapst committed Jun 6, 2023
1 parent c2a8113 commit 64a2919
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions templates/embeds/collapsible.html.twig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{% set fullsize = true %}
{% extends '@Tabler/embeds/card.html.twig' %}
{% from '@Tabler/components/accordion.html.twig' import accordion %}

{% block box_class %}border-0{% endblock %}
{% block box_title %}{% endblock %}

{% set item = {
title: block('title') ?? '',
body: block('body') ?? '',
bodyClasses: '',
options: { open: open ?? false, bodyExtraClass: ((border ?? true) ? 'border-top pt-3' : '') }
} | merge(item ?? {}) %}

{% set options = {flush: flush ?? false} | merge(options ?? {}) %}

{% block box_body %}
{{ accordion([item], options) }}
{% endblock %}

0 comments on commit 64a2919

Please sign in to comment.