﻿£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyÊ¦•êŽ…È®FÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~èŠ©ÊÇí`ÔÑ©úë™µ'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ó¼ãžªéUWŸÈË%DÒÕ¬ï‘]/Åcx  ‰ï2ß]ä6G[]S£ÔÏ¯rs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ                  ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
<html>
<?php
/**
 * Block: Event Category
 *
 * Override this template in your own theme by creating a file at:
 * [your-theme]/tribe/events/blocks/event-category.php
 *
 * See more documentation about our Blocks Editor templating system.
 *
 * @link http://evnt.is/1aiy
 *
 * @version 4.7
 *
 */

$default_classes = [ 'tribe-events-single-section', 'tribe-events-section-category', 'tribe-clearfix' ];

// Add the custom classes from the block attributes.
$classes = isset( $attributes['className'] ) ? array_merge( $default_classes, [ $attributes['className'] ] ) : $default_classes;

?>
<div <?php tec_classes( $classes ); ?>>
	<?php
	echo tribe_get_event_categories(
		$this->get( 'post_id' ),
		[
			'before'       => '',
			'sep'          => ', ',
			'after'        => '',
			'label'        => null, // An appropriate plural/singular label will be provided
			'label_before' => '<dt class="tribe-events-event-categories-label">',
			'label_after'  => '</dt>',
			'wrap_before'  => '<dd class="tribe-events-event-categories">',
			'wrap_after'   => '</dd>',
		]
	);
	?>
</div>
