-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-normal.php
More file actions
58 lines (53 loc) · 2.23 KB
/
Copy pathsingle-normal.php
File metadata and controls
58 lines (53 loc) · 2.23 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
?>
<?php get_header(); ?>
<article id="post-<?php the_ID(); ?>" class="post">
<div class="background">
<div id="logo">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php bloginfo( 'name' ); ?>">
<img src="<?php echo bloginfo('stylesheet_directory')?>/images/dennis-circle.svg" />
</a>
</div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_post_thumbnail(); ?>
<div class="entry classic">
<?php if (is_linked_list()): ?>
<h1 class="<?php the_ID(); ?> linktipp">
<a href="<?php the_linked_list_link(); ?>" title="<?php printf( esc_attr__( 'Weiter zum Artikel: %s'), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
<span style="color: #B33333">★</span> <?php the_title(); ?>
</a>
</h1>
<?php else: ?>
<h1 class="<?php the_ID(); ?>"><?php the_title(); ?></h1>
<?php endif; ?>
<aside class="sidebar"><div class="date"><?php the_time('j. F Y') ?></div>
<?php if (get_comments_number()>=1 ) : ?>
<div class="commentcount">
· <?php comments_popup_link(__('Kein Kommentar'), __('1 Kommentar'), __('% Kommentare'), __('') ); ?>
</div>
<?php endif; ?>
</aside>
<?php the_content('Lies den Rest des Artikels »'); ?>
<?php if (is_linked_list()): ?>
<a class="button" href="<?php the_linked_list_link(); ?>" title="<?php printf( esc_attr__( 'Weiter zum Artikel: %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>">
Weiter zum Artikel
</a>
<?php endif; ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<div id="authorbox">
<div class="myavatar"><?php echo get_avatar(get_the_author_meta('user_email'), '100');?></div>
<h6><a rel="author" href="https://profiles.google.com/110602491035334689174">Über <?php the_author_meta('nickname');?></a></h6>
<p><?php the_author_meta('description');?></p>
</div>
<?php comments_template(); ?>
</div> <!-- end entry -->
</div> <!-- end background -->
<?php endwhile; else: ?>
<p>Ups, keine Ergebnisse zu diesem Aufruf.</p>
<?php endif; ?>
</article>
<?php get_footer(); ?>