-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added combined card-accordion component (#165)
- Loading branch information
1 parent
c2a8113
commit 64a2919
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 %} |