You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
543 B
22 lines
543 B
{# |
|
/** |
|
* @file reserve_category.html.twig |
|
* Default theme implementation to present Reservation Category data. |
|
* |
|
* This template is used when viewing Reservation Category pages. |
|
* |
|
* |
|
* Available variables: |
|
* - content: A list of content items. Use 'content' to print all content, or |
|
* - attributes: HTML attributes for the container element. |
|
* |
|
* @see template_preprocess_reserve_category() |
|
* |
|
* @ingroup themeable |
|
*/ |
|
#} |
|
<div{{ attributes.addClass('reserve_category') }}> |
|
{% if content %} |
|
{{- content -}} |
|
{% endif %} |
|
</div>
|
|
|