HEX
Server: Apache
System: Linux webd001.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: mciraet (192513)
PHP: 8.2.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/mciraet/www/wp-content/themes/movedo/taxonomy-portfolio_field.php
<?php get_header(); ?>

<?php movedo_grve_print_header_title( 'portfolio' ); ?>
<?php movedo_grve_print_header_breadcrumbs( 'portfolio' ); ?>

<?php	
	$portfolio_style = 'fitRows';
	$columns = '3';
	$columns_tablet_landscape = '3';
	$columns_tablet_portrait = '2';
	$columns_mobile = '1';
?>

<!-- CONTENT -->
<div id="grve-content" class="clearfix">
	<div class="grve-content-wrapper">
		<!-- MAIN CONTENT -->
		<div id="grve-main-content">
			<div class="grve-main-content-wrapper clearfix">

				<div class="grve-section" style="margin-bottom: 0px;">

					<div class="grve-container">
						<!-- ROW -->
						<div class="grve-row">

							<!-- COLUMN 1 -->
							<div class="grve-column grve-column-1">

								<div class="grve-portfolio grve-isotope grve-with-gap" data-gutter-size="40" data-columns="<?php echo esc_attr( $columns ); ?>" data-columns-tablet-landscape="<?php echo esc_attr( $columns_tablet_landscape ); ?>" data-columns-tablet-portrait="<?php echo esc_attr( $columns_tablet_portrait ); ?>" data-columns-mobile="<?php echo esc_attr( $columns_mobile ); ?>" data-layout="<?php echo esc_attr( $portfolio_style ); ?>" data-spinner="no">								
						<?php
							if ( have_posts() ) :
						?>
									<div class="grve-isotope-container">
						<?php
									// Start the Loop.
									while ( have_posts() ) : the_post();
										//Get post template
										get_template_part( 'templates/portfolio', 'grid' );

									endwhile;
						?>
									</div>
						<?php
								// Previous/next post navigation.
								movedo_grve_paginate_links();
							else :
								// If no content, include the "No posts found" template.
								get_template_part( 'content', 'none' );
							endif;
						?>
								</div>
							</div>
						</div>
					</div>

				</div>

			</div>
		</div>
		<!-- End Content -->
	</div>
</div>
<?php get_footer();

//Omit closing PHP tag to avoid accidental whitespace output errors.