forked from NB-Public/jkb-childtheme
added files for said branch
This commit is contained in:
parent
1ca03fd14b
commit
13f6bc5203
8 changed files with 464 additions and 5 deletions
37
content-list.php
Normal file
37
content-list.php
Normal file
|
@ -0,0 +1,37 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix postlist'); ?> role="article">
|
||||
<?php if ( has_post_thumbnail() ): ?>
|
||||
<a href=" <?php the_permalink(); ?>" class="postimglist"><?php the_post_thumbnail('listenansicht'); ?></a>
|
||||
<?php endif; ?>
|
||||
|
||||
<header class="article-header">
|
||||
|
||||
<?php $posttags = get_the_tags();
|
||||
$count=0;
|
||||
if ($posttags) {
|
||||
?><p class="subhead"><?php
|
||||
foreach($posttags as $tag) {
|
||||
$count++;
|
||||
if (1 == $count) {
|
||||
echo ''.$tag->name;
|
||||
}
|
||||
elseif ($count > 1) {
|
||||
echo ', '.$tag->name;
|
||||
}
|
||||
}
|
||||
?></p><?php
|
||||
}?>
|
||||
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
|
||||
</header>
|
||||
|
||||
|
||||
<section class="article-teaser"><?php the_excerpt(); ?></section>
|
||||
|
||||
|
||||
</article>
|
||||
|
Reference in a new issue