<?php /** * Index fallback template - Creativos Cafeteros * @package CreativosCafeteros */ // This is the main fallback template required by WordPress. // The site uses specific templates: front-page.php, home.php, archive-product.php, single.php, etc. get_header(); ?> <div class="container" style="padding-top:120px;padding-bottom:80px;"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <article> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_excerpt(); ?> </article> <?php endwhile; ?> <?php else : ?> <p><?php esc_html_e('No hay contenido disponible.', 'creativoscafeteros'); ?></p> <?php endif; ?> </div> <?php get_footer(); ?>