-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.php
57 lines (40 loc) · 1.39 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
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
<?php
/**
* Name: Origines WordPress Theme
* GitHub URI: https://github.com/haroldparis/origines
* Description: Origines template for categories.
* Author: Harold Paris
* Twitter: @haroldparis
* Author website: http://www.tribeleadr.com/
*/
?>
<?php get_header(); ?>
<div id="o-wrapper" class="container">
<div class="row">
<div id="o-main" class="span9">
<?php if ( function_exists('origines_bread') ) origines_bread(); ?>
<header class="o-title-header page-header">
<h1 class="o-title">
<?php printf( __( 'All posts in %s', 'origines' ), single_cat_title('', false) ); ?>
</h1> <!-- /.o-title -->
</header> <!-- /.o-title-header -->
<div id="o-content" itemprop="MainContentofPage">
<?php
$category_description = category_description();
if ( ! empty( $category_description ) ): ?>
<div id="o-category-info" class="well">
<h4 id="o-category-info-title" class="media-heading">
<?php printf( __( 'About the category: %s', 'origines' ), single_cat_title('', false) ); ?>
</h4> <!-- /#o-category-description-title -->
<?php echo $category_description; ?>
</div> <!-- /#o-category-info -->
<?php
endif;
?>
<?php get_template_part( 'loop' ); ?>
</div> <!-- /#o-content -->
</div><!-- /#o-main -->
<?php get_sidebar(); ?>
</div><!-- /.row -->
</div><!-- /#o-wrapper -->
<?php get_footer(); ?>