You are here

webform-accordion-tab.tpl.php in Webform Accordion 6

The template file for an Accordion Tab.

Available variables: $title: The title for the accordion tab.

$content: The content to display within the tab.

$element: The raw element array for the tab.

File

templates/webform-accordion-tab.tpl.php
View source
<?php

/**
 * @file
 * The template file for an Accordion Tab.
 *
 * Available variables:
 * $title: The title for the accordion tab.
 *
 * $content: The content to display within the tab.
 *
 * $element: The raw element array for the tab.
 */
?>
<h3><a href="#"><?php

print $title;
?></a></h3>
<div class="accordion-tab-content"><?php

print $content;
?></div>