forked from hukl/wwworld
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtag.php
More file actions
34 lines (27 loc) · 728 Bytes
/
tag.php
File metadata and controls
34 lines (27 loc) · 728 Bytes
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
<?php
/**
* The template used to display Tag Archive pages
*
* @package WordPress
* @subpackage Toolbox
*/
get_header(); ?>
<div class="row">
<div class="column grid_8" id="content">
<section id="primary">
<?php the_post(); ?>
<header class="page-header">
<h1 class="page-title"><?php
printf( __( 'Schlagwort: %s', 'themename' ), '<span>' . single_tag_title( '', false ) . '</span>' );
?></h1>
</header>
<?php rewind_posts(); ?>
<?php get_template_part( 'loop', 'tag' ); ?>
<!-- #content -->
</section>
</div><!-- #primary -->
<div class="column grid_3">
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>