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/index.php
<?php get_header(); ?>


<?php movedo_grve_print_header_title( 'blog' ); ?>
<?php movedo_grve_print_header_breadcrumbs( 'post' ); ?>

<!-- CONTENT -->
<div id="grve-content" class="clearfix <?php echo movedo_grve_sidebar_class( 'blog' ); ?>">
	<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="wpb_column grve-column grve-column-1">
								<div class="grve-column-wrapper">
									<!-- Blog FitRows -->
									<?php
										$movedo_grve_blog_mode = movedo_grve_option( 'blog_mode', 'large' );
										$movedo_grve_blog_class = movedo_grve_get_blog_class();
									?>
									<div class="<?php echo esc_attr( $movedo_grve_blog_class ); ?>" <?php movedo_grve_print_blog_data(); ?>>

										<?php
										if ( have_posts() ) :
											if ( 'large' == $movedo_grve_blog_mode || 'small' == $movedo_grve_blog_mode ) {
										?>
											<div class="grve-standard-container">
										<?php
											} else {
										?>
											<div class="grve-isotope-container">
										<?php
											}

										// Start the Loop.
										while ( have_posts() ) : the_post();
											//Get post template
											get_template_part( 'content', get_post_format() );
										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>
									<!-- End Element Blog -->
								</div>
							</div>
							<!-- END COLUMN 1 -->

						</div>
						<!-- END ROW -->

					</div>

				</div>

			</div>
		</div>
		<!-- End Content -->
		<?php
			movedo_grve_set_current_view( 'blog' );
			if ( is_front_page() ) {
				//movedo_grve_set_current_view( 'frontpage' );
			}
		?>
		<?php get_sidebar(); ?>
	</div>
</div>
<?php get_footer();

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