<?php
/* banner-php */
get_header();
switch (domik_get_option('folio_style')) {
case 'style2':
get_template_part('template-parts/archive','style2' );
break;
case 'style3':
get_template_part('template-parts/archive','style3' );
break;
default:
get_template_part('template-parts/archive','style1' );
break;
}
get_footer();