HEX
Server: Apache
System: Linux r5.a1center.net 4.18.0-513.5.1.lve.el8.x86_64 #1 SMP Tue Nov 21 10:14:49 UTC 2023 x86_64
User: redpsiju (1623)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /home/redpsiju/public_html/wp-content/themes/vastart/template-parts/entry/content-quote.php
<?php
/**
 * Template part for displaying page content in quote format.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package Vastart
 * @since 1.0
 * @version 1.0
 */

$classes = vastart_entries_class();
$vastart_post_id = 'post-' . get_the_ID();
?>

<article id="<?php echo esc_attr( $vastart_post_id ); ?>" <?php post_class( $classes ); ?>>

	<div class="uf-card">
		<div class="uf-card-header">
			<?php
				get_template_part( 'template-parts/entry/categories' );
				the_post_thumbnail(
					'large',
					array(
						'class' => 'uf-card-image',
					)
				);
			?>
		</div><!-- .uf-card-header -->

		<div class="uf-card-body">
			<div class="entry__content clearfix">
				<?php
					the_content();

					wp_link_pages(
						array(
							'before' => '<div class="page-links">',
							'after'  => '</div>',
							'link_before' => '<span>',
							'link_after' => '</span>',
						)
					);
				?>
			</div><!-- .entry-content -->
		</div><!-- .uf-card-header -->

		<div class="uf-card-footer">
			<?php get_template_part( 'template-parts/entry/meta' ); ?>
		</div><!-- .uf-card-footer -->
	</div><!-- .uf-card-->

</article><!-- #post-## -->