<?php
/**
 * Template part for displaying posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Xarxaprod_theme
 */

?>
<!-- template-parts content-xarxaprod-convo-php -->
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

	<header class="entry-header">
		<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
	</header><!-- .entry-header -->

	<section class="xarxaprod-convo-info-contact-fields">

	  <div class="xarxaprod-convo-info-field">
      <?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'xxp_convo_call') ); ?>
		</div>

    <?php if( get_field('xxp_convoer_name') ): ?>
	  <div class="xarxaprod-convo-info-field">
      <p class="xarxaprod-convoer-name"><?php the_field('xxp_convoer_name'); ?></p>
		</div>
    <?php endif; ?>

	  <?php if( get_field('xxp_convo_contact_name') ): ?>
	  <div class="xarxaprod-convo-info-field">
      <p class="xarxaprod-convo-contact-name"><?php the_field('xxp_convo_contact_name'); ?></p>
	  </div>
    <?php endif; ?>

	  <?php if( get_field('xxp_convo_contact_mail') ): ?>
	  <div class="xarxaprod-convo-info-field">
      <p class="xarxaprod-convo-contact-mail"><?php the_field('xxp_convo_contact_mail'); ?></p>
	  </div>
    <?php endif; ?>

	  <?php if( get_field('xxp_convo_contact_tel') ): ?>
	  <div class="xarxaprod-convo-info-field">
      <p class="xarxaprod-convo-contact-tel"><?php the_field('xxp_convo_contact_tel'); ?></p>
	  </div>
    <?php endif; ?>


	</section>

	<div class="entry-content">

		<?php
		the_content(
			sprintf(
				wp_kses(
					/* translators: %s: Name of current post. Only visible to screen readers */
					__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'xarxaprod' ),
					array(
						'span' => array(
							'class' => array(),
						),
					)
				),
				wp_kses_post( get_the_title() )
			)
		);

		wp_link_pages(
			array(
				'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'xarxaprod' ),
				'after'  => '</div>',
			)
		);
		?>
	</div><!-- .entry-content -->

	<section class="xarxaprod-convo-info-fields">

	  <div class="xarxaprod-convo-info-field">
      <h6>Sector</h6>
		  <?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'xxp_convo_field') ); ?>
		</div>

	  <div class="xarxaprod-convo-info-field">
      <h6>Territori</h6>
	  	<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'xxp_convo_territory') ); ?>
		</div>

	  <div class="xarxaprod-convo-info-field">
      <h6>Serveis</h6>
	  	<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'xxp_convo_service') ); ?>
		</div>

	  <div class="xarxaprod-convo-info-field">
      <h6>Centre</h6>
	  	<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'xxp_convo_center') ); ?>
		</div>


	  <?php if( get_field('xxp_convo_espai_associat') ): ?>
	  <div class="xarxaprod-convo-espai-associat">
			<h6>Espai Associat</h6>

<?php
	// read here howto
  // https://www.advancedcustomfields.com/resources/relationship/#display-list-of-posts-with-setuppostdata
$espai_associat_posts = get_field('xxp_convo_espai_associat');
if( $espai_associat_posts ): ?>
	<ul class="xarxaprod-label item-<?php echo $espai_associat_posts; ?>">
    <?php foreach( $espai_associat_posts as $post ):
        // Setup this post for WP functions (variable must be named $post).
        setup_postdata($post); ?>
        <li>
            <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
        </li>
    <?php endforeach; ?>
    </ul>
    <?php
    // Reset the global post object so that the rest of the page works correctly.
    wp_reset_postdata(); ?>
<?php endif; ?>


	  </div>
		<?php endif; ?>

	  <div class="xarxaprod-convo-info-field">
      <h6>Termini</h6>
     <?php if( get_field('xxp_convo_apply_begin') || get_field('xxp_convo_apply_end') ): ?>
      <ul class="xarxaprod-label item-xxp_convo_dates">
        <li class="item-xxp_convo_apply_begin">del <?php the_field('xxp_convo_apply_begin'); ?> </li>
        <li class="item-xxp_convo_apply_end">al <?php the_field('xxp_convo_apply_end'); ?> </li>
      </ul>
     <?php endif; ?>
	  <?php if( get_field('xxp_convo_apply_text') ): ?>
      <p class="item-xxp_convo_apply_text"><?php the_field('xxp_convo_apply_text'); ?></p>
    <?php endif; ?>

    </div>
	
 	<?php if( get_field('xxp_convo_web') ): ?>
	  <div class="xarxaprod-convo-info-field">
	  	<h6>+ InformaciĆ³</h6>
      <p><a href="<?php the_field('xxp_convo_web'); ?>" class="button button-more button-letsgo">ves-hi</a></p>
		</div>
		<?php endif; ?>

	  <div class="xarxaprod-convo-info-field">
      <h6>Necessites assesorament?</h6>
      <p><a href="<?php echo esc_url( home_url( '/consultoria/' ) ); ?>" class="button button-more button-ourservices">Oferim serveis de consultoria</a></p>
    </div>

  </section>
	<footer class="entry-footer">
		<?php xarxaprod_entry_footer(); ?>
	</footer><!-- .entry-footer -->
</article><!-- #post-<?php the_ID(); ?> -->