*/
get_header();
?>

<main id="primary" <?php 
audiotheme_archive_class(array('content-area', 'archive-video'));
?>
 role="main" itemprop="mainContentOfPage">

	<?php 
if (have_posts()) {
    ?>

		<header class="page-header">
			<?php 
    the_audiotheme_archive_title('<h1 class="page-title" itemprop="headline">', '</h1>');
    ?>
		</header>

		<?php 
    the_audiotheme_archive_description('<div class="page-content" itemprop="text">', '</div>');
    ?>

		<?php 
    huesos_block_grid(array('classes' => array('block-grid--landscape'), 'columns' => huesos_has_sidebar() ? 2 : 3));
    ?>

		<?php 
    the_posts_navigation(array('prev_text' => __('Next', 'huesos'), 'next_text' => __('Previous', 'huesos')));
    ?>
 * The template to display list of records.
 *
 * @package AudioTheme
 * @subpackage Template
 * @since 1.2.0
 */
get_header();
?>

<?php 
do_action('audiotheme_before_main_content');
?>

<header class="audiotheme-archive-header archive-header">
	<?php 
the_audiotheme_archive_title('<h1 class="audiotheme-archive-title archive-title">', '</h1>');
?>
	<?php 
the_audiotheme_archive_description('<div class="audiotheme-archive-intro archive-intro">', '</div>');
?>
</header>

<div class="audiotheme-records audiotheme-grid audiotheme-clearfix">

	<?php 
while (have_posts()) {
    the_post();
    ?>

		<article id="post-<?php 
    the_ID();