-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaxonomy-kunsthalle.php
62 lines (43 loc) · 1.11 KB
/
taxonomy-kunsthalle.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
58
59
60
61
62
<?php
/**
* The kunsthalle taxonomy archive
*
* @package huhu
* @since 0.5
*/
get_header(); ?>
<main id="primary" class="site-content">
<header class="tax-header">
<div class="tax-title">Kunsthalle:
<?php single_tag_title( ); ?>
</div>
<div class="tax-description">
<?php echo tag_description( ); ?>
</div>
</header>
<?php
// Start the Loop.
while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php /* Headline */ ?>
<header class="entry-header">
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" rel="bookmark">
<?php the_title(); ?>
</a>
</h2>
</header>
<?php /* Text */ ?>
<div class="entry-content">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail('medium'); ?></a>
</div>
<?php /* Date */ ?>
<footer class="entry-date published">
<?php echo get_the_date(); ?>
<?php get_template_part( 'microformats' ) ?>
</footer>
</article>
<?php endwhile;?>
</main>
<?php get_footer(); ?>