-
Notifications
You must be signed in to change notification settings - Fork 1
/
taxonomy-components.php
57 lines (32 loc) · 1.59 KB
/
taxonomy-components.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 get_header(); ?>
<div class="container">
<div class="row">
<div class="span10 schtuff">
<div class="inner">
<article class="white_box">
<h2 class="archive-header"><?php
printf( __( 'Component Quality: %s', 'makezine' ), '<span>' . single_cat_title( '', false ) . '</span>' );
?></h2>
<p class="alert-message block-message info descriptor">(5=Highest quality) How nice are the components in terms of materials, design, fit, and other qualities? Well-made circuit boards, computer-cut plastic and metal parts, and other precision components add to the experience.</p>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="white_box">
<?php the_post_thumbnail('thumbnail', array('class' => 'alignleft')); ?>
<div class="span6 pull-right">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><h2>
<?php the_excerpt(); ?>
<p class="cats"><span class="the_category"><?php the_category(' '); ?>:</span> <em><?php the_tags(''); ?></em></p>
</div>
<div class="clear"></div>
<div class="border"></div>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php if(function_exists('wp_page_numbers')) { wp_page_numbers(); } ?>
</article>
</div><!--//Inner-->
</div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>