container.tpl 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {**********************************************************************
  2. * KerioEmail product developed. (2017-08-24)
  3. * *
  4. *
  5. * CREATED BY THURDATA -> http://thurdata.com
  6. * CONTACT -> contact@thurdata.com
  7. *
  8. *
  9. * This software is furnished under a license and may be used and copied
  10. * only in accordance with the terms of such license and with the
  11. * inclusion of the above copyright notice. This software or any other
  12. * copies thereof may not be provided or otherwise made available to any
  13. * other person. No title to and ownership of the software is hereby
  14. * transferred.
  15. *
  16. *
  17. **********************************************************************}
  18. {**
  19. * @autor ThurData <info@thrudata.ch>
  20. *}
  21. <div class="lu-container {$class}" id="{$elementId}" {foreach from=$htmlAttributes key=name item=data} {$name}="{$data}"{/foreach}>
  22. <h2>{$title}</h2>
  23. <div class="lu-row">
  24. {foreach from=$elements key=nameElement item=dataElement}
  25. <div id="{$dataElement->getId()}" class="{$dataElement->getClasses()}">
  26. {$dataElement->getHtml()}
  27. </div>
  28. {/foreach}
  29. </div>
  30. </div>
  31. {if $scriptHtml}
  32. <script type="text/javascript">
  33. {$scriptHtml}
  34. </script>
  35. {/if}