|
@@ -4,16 +4,19 @@
|
|
|
<div class="entry-content archive wow fadeIn">
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
<header class="page-header">
|
|
|
- <h1 class="super cm-sans">Category: <?php single_cat_title(); ?></h1>
|
|
|
+ <h1 class="super cm-sans">Topic: <?php single_cat_title(); ?></h1>
|
|
|
</header>
|
|
|
<?php while ( have_posts() ) : the_post();?>
|
|
|
- <h1 class="entry-title"><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></h1>
|
|
|
- <div class="entry-meta">
|
|
|
- <div class="date">
|
|
|
- <?php the_date(); ?>
|
|
|
+ <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 the_excerpt(); ?>
|
|
|
<?php endwhile; ?>
|
|
|
|
|
|
<div class="clear"> </div>
|