public
Description: An elegant, flexible WordPress theme
Homepage: http://tarskitheme.com/
Clone URL: git://github.com/ionfish/tarski.git
ionfish (author)
Tue Dec 09 16:54:35 -0800 2008
commit  8ef15f76e4f918aeaafc0cfa21eeb136ae12612b
tree    b58b747e240a4aaacee9f1522f65af9cc00b9325
parent  5b1854c72cbf0b06392b1946e39c7c9df2b8a66e
tarski / tags.php
100644 41 lines (23 sloc) 0.684 kb
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
<?php
/*
Template Name: Tags
*/
 
get_header(); ?>
 
 
 
<?php if (have_posts()) { while(have_posts()) { the_post(); ?>
<div class="primary entry">
<div class="meta">
<h1 class="title"><?php the_title(); ?></h1>
<?php edit_post_link(__('edit page','tarski'), '<p class="metadata">(', ')</p>'); ?>
</div> <!-- /meta -->
<div class="content">
<?php if(get_the_content()) { ?>
<?php the_content(); ?>
<h3><?php _e('Tags','tarski'); ?></h3>
<?php } ?>
 
<p class="tagcloud"><?php wp_tag_cloud(); ?></p>
 
</div> <!-- /content -->
 
<?php th_postend(); ?>
</div> <!-- /primary -->
 
<?php } } ?>
 
 
 
<?php get_sidebar(); ?>
 
 
 
<?php get_footer(); ?>