-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpage.php
24 lines (24 loc) · 1.17 KB
/
page.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
<?php get_header(); ?>
<?php if (have_posts()) : the_post(); update_post_caches($posts); ?>
<div id="content" class="page">
<?php edit_post_link( '<i class="write icon"></i>', '', '', '','ts large icon right floated edit opinion button m-16' ); ?>
<div class="header-wrapper">
<div class="bg" style="background-image:url('<?php echo(has_post_thumbnail()?the_post_thumbnail_url():"https://picsum.photos/1200#".rand()) ?>')"></div>
</div>
<div class="ts narrow container header">
<div class="title"><?php the_title(); ?></div>
<div class="meta">
<div><i class="calendar icon outline"></i><?php the_time('Y/n/j') ?> </div>
<div><i class="comment icon outline"></i><?php comments_number(__( 'No one commented', 'Carter' ),__( '1 Comment', 'Carter' ),__( '% Comments', 'Carter' )); ?></div>
<div><i class="user icon outline"></i><?php the_author() ;?></div>
</div>
</div>
<div class="ts narrow container" style="padding-top: 20px;">
<post><?php the_content();?></post>
<div class="ts clearing divider"></div>
<?php get_template_part( 'share', 'buttons' ); ?>
<div class="ts clearing divider"></div>
</div>
</div>
<?php endif; ?>
<?php get_footer(); ?>