<?php
/**
 * Template Name: Research
 *
 * @package gralbcn
 */

get_header(); ?>
<div class="container grid">




			
	<div class="research-page">

  <!-- Research Projects -->
  <?php if( have_rows('research_projects') ): ?>
    <div class="research-section">
      <h2>—Research Projects</h2>

      <?php 
      $count = 0;
      while( have_rows('research_projects') ): the_row(); 
        $project = get_sub_field('project');
        $pi = get_sub_field('principal_investigator');
        $years = get_sub_field('years_funded');
        $funding = get_sub_field('funding_institution');
        $hidden_class = ($count >= 2) ? 'hidden' : '';
      ?>
       <div class="research-item <?php echo $hidden_class; ?>">
        <div><strong>PROJECT</strong></div>
        <div><?php echo esc_html($project); ?></div>

        <div><strong>PRINCIPAL INVESTIGATOR</strong></div>
        <div><?php echo esc_html($pi); ?></div>

        <div><strong>YEARS FUNDED</strong></div>
        <div><?php echo esc_html($years); ?></div>

        <div><strong>FUNDING INSTITUTION</strong></div>
        <div><?php echo esc_html($funding); ?></div>

      </div>
      <?php 
        $count++;
      endwhile; 
      ?>

      <?php if ($count > 2): ?>
          <div class="container-center-button">
          <button class="view-more-btn-projects btn btn-primary">View more</button>
        </div>
      <?php endif; ?>

    </div>
  <?php endif; ?>

  <!-- Research Groups -->
  <?php if( have_rows('research_groups') ): ?>
    <div class="research-section research-groups-section">
      <h2>—Research Groups</h2>

      <?php 
      $count = 0;
      while( have_rows('research_groups') ): the_row(); 
        $group = get_sub_field('project');
        $pi = get_sub_field('principal_investigator');
        $years = get_sub_field('years_funded');
        $institution = get_sub_field('funding_institution');
        $logo = get_sub_field('institution_logo');
        $hidden_class = ($count >= 2) ? 'hidden' : '';
      ?>
       <div class="research-item <?php echo $hidden_class; ?>">
        <div><strong>GROUP</strong></div>
        <div><?php echo esc_html($group); ?></div>

        <div><strong>PRINCIPAL INVESTIGATOR</strong></div>
        <div><?php echo esc_html($pi); ?></div>

         <div><strong>FUNDING INSTITUTION</strong></div>
        <div><?php echo esc_html($institution); ?></div>

        <div><strong>YEARS FUNDED</strong></div>
        <div><?php echo esc_html($years); ?></div>

        <?php if ($logo): ?>
          <div class="logo">
            <img src="<?php echo esc_url($logo); ?>" alt="">
          </div>
        <?php endif; ?>
      </div>

      <?php 
        $count++;
      endwhile; 
      ?>

      <?php if ($count > 2): ?>
        <div class="container-center-button">
          <button class="view-more-btn-groups btn btn-primary">View more</button>
        </div>
      <?php endif; ?>

    </div>
  <?php endif; ?>

</div>











</div> <!-- end container -->








<?php get_footer(); ?>