<?php

get_header('embed');
if (have_posts()) {
    while (have_posts()) {
        the_post();
        get_template_part('embed', 'content');
    }
} else {
    get_template_part('embed', '404');
}
get_footer('embed');