<?php
// The Template for displaying all single posts
get_header();
?>
<main class="row spc">
<article class="large-11 large-centered columns">
<?php
while ( have_posts() ) : the_post();
echo do_shortcode('[omadaCalendar id="'.get_the_ID().'"]');
endwhile; // end of the loop. ?>
</article>
</main>
<?php get_footer(); ?>