<?php get_header(); ?>

	<section id="main-content">

		<div class="HomeContent">
			
			<div class="HomeContent-lastPost">
			
				<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

				<article class="Post Post-resume">
					<a href="<?php the_permalink(); ?>">
						<?php the_post_thumbnail( 'medium' ); ?>
					</a>
					<header class="Post-title">
						<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
						<small><?php the_time(get_option('date_format')); ?> &bull; <?php the_category(', '); ?></small>
					</header>
					<div class="Post-content">
						<?php the_excerpt(); ?>
						<a href="<?php the_permalink(); ?>" class="btn btn-more"><?php _e('Leer más ', 'itc'); ?><span class="fa fa-long-arrow-right"></span></a>
					</div>
				</article>

				<?php endwhile; endif; ?>

				<?php if (get_next_posts_link() || get_previous_posts_link()) : ?>

				<div class="posts-nav">
					<?php next_posts_link(__('&larr; Anteriores', 'itc')); ?>
					<?php previous_posts_link(__('Recientes &rarr;', 'itc')); ?>
				</div>

				<?php endif; ?>

			</div>

		</div>

	</section>


<?php get_footer(); ?>