<?php /** * The main template file. * * @package Albeo */ get_header(); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php get_template_part( 'content' ); ?> <?php endwhile; ?> <?php include("nav.php"); ?> <?php else : ?> <?php include("404.php"); ?> <?php endif; ?> <?php get_footer(); ?>