|
@@ -1,23 +1,26 @@
|
|
|
<?php get_header(); ?>
|
|
<?php get_header(); ?>
|
|
|
- <div class="container">
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <div class="container leader">
|
|
|
|
|
+ <div class="row">
|
|
|
|
|
+ <div class="col-md-12">
|
|
|
|
|
+ <h1 class="cm-sans fs-2 archive-heading animate__animated animate__fadeInLeft">Topic: <?php single_cat_title(); ?></h1>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
<article id="content" class="single" role="main">
|
|
<article id="content" class="single" role="main">
|
|
|
- <div class="entry-content archive wow fadeIn">
|
|
|
|
|
|
|
+ <div class="entry-content archive">
|
|
|
<?php if ( have_posts() ) : ?>
|
|
<?php if ( have_posts() ) : ?>
|
|
|
- <header class="page-header">
|
|
|
|
|
- <h1 class="super cm-sans">Topic: <?php single_cat_title(); ?></h1>
|
|
|
|
|
- </header>
|
|
|
|
|
- <?php while ( have_posts() ) : the_post();?>
|
|
|
|
|
- <div class="col-sm-6 offset-lg-1">
|
|
|
|
|
- <div class="entry-meta">
|
|
|
|
|
- <div class="date">
|
|
|
|
|
- <?php the_date(); ?>
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
- <h4><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'dw' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h4>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <?php while ( have_posts() ) : the_post(); ?>
|
|
|
|
|
+ <div class="col-sm-6">
|
|
|
|
|
+ <div class="entry-meta">
|
|
|
|
|
+ <div class="date">
|
|
|
|
|
+ <?php the_date(); ?>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <h4><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'dw' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h4>
|
|
|
|
|
+ <?php the_excerpt(); ?>
|
|
|
|
|
+ </div>
|
|
|
<?php endwhile; ?>
|
|
<?php endwhile; ?>
|
|
|
<div class="clear"> </div>
|
|
<div class="clear"> </div>
|
|
|
- <hr>
|
|
|
|
|
<?php dw_paging_nav();
|
|
<?php dw_paging_nav();
|
|
|
else :
|
|
else :
|
|
|
printf( __( 'Nothing Found', 'dw' ));
|
|
printf( __( 'Nothing Found', 'dw' ));
|