-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.php
29 lines (26 loc) · 1.03 KB
/
category.php
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
<?php get_header(); ?>
<div class="blogbg" id="main">
<div class="container">
<div class="row">
<div class="blogLeft col-sm-8">
<div id="content">
<span id="category_title">Nach "<?php single_cat_title( '', true ); ?>" gefiltert.</span>
<div id="category_description"><?php echo category_description(); ?></div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="blogarticle article">
<h2 class="title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
</div> <!-- .article -->
<?php endwhile; endif; ?>
</div><!-- #content -->
</div>
<div style="margin-top: 2vh;" class="col-sm-4">
<div id="sidebar">
<?php get_sidebar(); ?>
</div><!-- #sidebar -->
</div>
</div>
</div>
<div class="clear"></div>
</div><!-- #main -->
<?php get_footer(); ?>