archive.php 2.53 KB
Newer Older
John Punzalan's avatar
John Punzalan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
<?php get_header(); // Header ?>
<!-- #content -->
<div id="content">
  <!-- #inner-content -->
	<div id="inner-content">
    <!-- #main -->
		<main id="main" role="main">

			<div class="row">
				<div class="large-8 medium-8 column">
					<section class="section section--wo-banner" itemscope itemptype="http://schema.org/FindAction">

						<header class="section__header">
							<?php
							the_archive_title( '<h2 class="page-title wow fadeInUp">', '</h2>' );
							the_archive_description( '<div class="taxonomy-description wow fadeInUp">', '</div>' );
							?>
						</header>
						<?php if(have_posts()) : ?>
							<?php while(have_posts()) : the_post(); ?>

							<article id="post-<?php the_ID(); ?>"
								<?php post_class('article result'); ?>
								role="article"
								itemprop="result">

								<header class="">

									<h3 class="article__title wow fadeInUp">
			              <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
			            </h3>

									<p class="article__meta wow fadeInUp">
										<?php printf( __( 'Posted %s', 'kalabera' ),
									    /* the time the post was published */
									    '<i class="dashicons dashicons-calendar"></i> <time class="article__datetime" datetime="' . get_the_time('Y-m-d') . '" itemprop="datePublished">' . get_the_time(get_option('date_format')) . '</time>'
										); ?>
									</p>

								</header>

								<div class="article__content wow fadeIn">
									<?php the_excerpt( '<span class="read-more">' . __( 'Read more &raquo;', 'kalabera' ) . '</span>' ); ?>

								</div>

								<footer class="article__footer">

									<?php if(get_the_category_list(', ') != ''): ?>
			  						<p class="category-wrapper wow fadeIn"><?php printf('<i class="dashicons dashicons-category"></i> %1$s', get_the_category_list(', ') ); ?></p>
			  					<?php endif; ?>

			 					  <?php the_tags( '<p class="tags wow fadeIn"><i class="dashicons dashicons-tag"></i> ', ', ', '</p>' ); ?>

								</footer>

							</article>

							<?php endwhile; ?>

							<?php bones_page_navi(); ?>

						<?php else : ?>

			      	<?php _e('Sorry no results were found. Please try again!', 'kalabera'); ?>

						<?php endif; ?>

					</section>
				</div>

				<div class="large-4 medium-4 column section section--sidebar section--wo-banner">
					<?php get_sidebar(); // Sidebar ?>
				</div>
			</div>
		</main> <!-- end of: #main -->

	</div> <!-- end of: #inner-content -->

</div> <!-- end of: #content -->

<?php get_footer(); // Footer ?>