JSFiddle - React, Tailwind, and code Playground

by Bakaru

HTML

<?php
$blog_archive_pages_classes = topfit_mikado_blog_archive_pages_classes(topfit_mikado_get_default_blog_list());
?>
<?php get_header(); ?>

<?php if (have_posts()) : ?>
	<?php while (have_posts()) : the_post(); ?>
		<?php topfit_mikado_get_title(); ?>
		<?php get_template_part('slider'); ?>
		<div class="mkd-container">
			<?php topfit_mikado_image_title_featured_image(); ?>
			<div class="mkd-container-inner">
				<?php do_action('topfit_mikado_after_container_open'); ?>
				<?php topfit_mikado_get_blog_single(); ?>
				<?php do_action('topfit_mikado_before_container_close'); ?>
			</div>
			<?php topfit_mikado_get_single_post_navigation_template(); ?>
		</div>
	<?php break; endwhile; ?>
<?php endif; ?>