HEX
Server: Apache
System: Linux p3plzcpnl489499.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: dwauav0tm6jp (6177017)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/dwauav0tm6jp/hosted/palmetto_old/wp-content/themes/palmettomain/page-51.php
<?php get_header(); ?>

<aside id="sidebar" class="grid_8 omega prefix_1">
<ul id="sidebar-nav">
<?php while(the_repeater_field('menu_items')): ?>
    <li><a href="<?php the_sub_field('link_url'); ?>"><?php the_sub_field('link_name'); ?></a></li>
<?php endwhile; ?>
</ul>
</aside>
<div id="content" class="grid_14 alpha">
	<div class="indent">
  	<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
      <div id="post-<?php the_ID(); ?>" <?php post_class('page'); ?>>
        <article>
          <h1><?php the_title(); ?></h1>
    
          <div id="page-content">
            <?php the_content(); ?>
		  <table id="case_studies_table">
			<?php $i =  1; ?>
            <?php while(the_repeater_field('table_items')): ?>
				<?php
				if(($i % 2) == 0 ){
				//This returns result of EVEN
					$EO = "even";
				} else {
				//This returns result of ODD
					$EO = "odd";
				}
				$i++;
				?>
				<tr class="<?php echo $EO ?>"><td class="label"><?php the_sub_field('label'); ?></td><td><?php the_sub_field('description'); ?></td></tr>
			<?php endwhile; ?>
		  </table>
          </div><!--#pageContent -->
        </article>
      </div><!--#post-# .post-->
  
    <?php endwhile; ?>
  </div>
</div><!--#content-->

<?php get_footer(); ?>