-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.php
More file actions
37 lines (28 loc) · 860 Bytes
/
Copy pathcontent.php
File metadata and controls
37 lines (28 loc) · 860 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
35
36
37
<?php
/**
* @package Times
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('row'); ?>>
<?php if (has_post_thumbnail()) : ?>
<div class="featured-thumb col-md-4">
<?php the_post_thumbnail(); ?>
</div><!--.featured-thumb-->
<div class="after-thumb col-md-8">
<?php else: ?>
<div class="after-thumb col-md-12">
<?php endif; ?>
<header class="entry-header">
<h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_excerpt(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Страницы:', 'times' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
</div><!--.after-thumb-->
</article><!-- #post-## -->