<?php get_header(); ?>

	<?php if(get_field('main_question', 'options')): ?>
		<section class="container">

			<div class="jumbotron text-center bg-transparent mt-5">
				<h1 class="display-4 text-danger"><?php the_field('main_question', 'options'); ?></h1>
			</div>

		</section>
	<?php endif;?>

</section>


<?php global $post;
$args = array(
	'numberposts' => 2,
	'post_type' => array('post'),
	'order' => 'DESC',
	'category_name' => 'info',
	'meta_query' => array(
		array(
			'key' => 'featured',
			'value' => true
		)
	)
);
$myposts = get_posts( $args );
if($myposts): ?>

	<section class="container negative-margin-top-5">
		<div class="row">
			<?php foreach( $myposts as $post ) : setup_postdata($post); ?>
				<div class="col-md-6 mb-3">
					<div class="card bg-danger h-100 text-center">
						<a href="<?php the_permalink(); ?>">
							<div class="card-body">
								<h5 class="card-title text-white text-uppercase"><?php the_title(); ?></h5>
								<p class="card-text text-white"><?php echo get_the_excerpt(); ?></p>
							</div>
						</a>
					</div>
				</div>
			<?php endforeach; ?>

		</div>
	</section>

	<?php endif; ?>
<?php wp_reset_postdata(); ?>
<?php // https://developer.wordpress.org/reference/functions/get_posts/ ?>

<?php get_footer(); ?>