<?php

/**
 * The template for displaying projects.
 *
 * 
 */


$pageField = get_fields();
$showHide = $pageField['show_hide_ss_projects'];
$heading = $pageField['heading_projects'];
$collectionsCategory = $pageField['collections_category_projects'];

$icon = TDG_URI . 'assets/images/icon.png';
?>
<?php if( !empty($showHide) ): ?>
    <section class="projects-section section">
        <div class="container">
            <div class="wrapper">
            <?php if( !empty($heading) ): ?>
                <h2 class="heading-section"><?php echo $heading; ?></h2>
            <?php endif; ?>
            <?php if( !empty($collectionsCategory) ): ?>
                <div class="tdg-list">
                <?php foreach ($collectionsCategory as $key => $category) {
 
                    $term_id = $category->term_id;
                    $term_name = $category->name;
                    $term_tax = $category->taxonomy;
                    $term_link = get_term_link($term_id,$term_tax );

                    
                    $custom_title = get_field('custom_title', $category);
                    $title = !empty($custom_title)? $custom_title : $term_name;
                    $gallery_tax = get_field('gallery_tax', $category);
                    $featured_image = !empty($gallery_tax)? $gallery_tax[0] : '';
                    $featured_image_url = !empty($featured_image)? $featured_image['url'] : '';
                    ?>
                    <div class="tdg-item">
                        <div class="tdg-item-wrap">
                            <div class="tdg-item-img">
                                <?php if(!empty($featured_image_url)): ?>
                                    <img src="<?php echo $featured_image_url; ?>" alt="">
                                <?php endif; ?>
                            </div>
                            <div class="tdg-item-content">
                                <div class="tdg-item-icon">
                                    <img src="<?php echo $icon; ?>" alt="icon">
                                </div>
                                <h3 class="tdg-item-title"><?php echo $title; ?></h3>
                                <div class="tdg-item-button-box">
                                    <a href="<?php echo $term_link; ?>" class="tdg-item-button cta-button">
                                        <span><?php echo __( 'Read More', 'hello-thedavanigroup' ); ?></span>
                                    </a>
                                </div>
                            </div>
                            <div class="tdg-item-title-box">
                                <h3 class="tdg-item-title">
                                    <?php echo $title; ?>
                                </h3>
                            </div>
                        </div>
                    </div>
                    <?php
                } ?>
                </div>
            <?php endif; ?>

            </div>
        </div>
    </section>
<?php endif; ?>
