-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.php
39 lines (38 loc) · 1.14 KB
/
content.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
<?php
/**
* The default template for displaying content
*
* @link http://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @subpackage grace-portfolio
* @since Skillcrush Starter 2.0
*/
?>
<article id="post-<?php the_ID(); ?>" class="post-entry">
<div class="entry-wrap">
<header class="entry-header">
<div class="entry-meta">
<time class="entry-time"><?php echo get_the_date(); ?></time>
</div>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</header>
<div class="entry-summary">
<?php if ( has_post_thumbnail() ) : ?>
<figure>
<?php the_post_thumbnail('full'); ?>
</figure>
<?php endif; ?>
<?php the_content(); ?>
</div>
<footer class="entry-footer">
<div class="entry-meta">
<span class="entry-terms comments author">
Posted in <?php the_category(', '); ?>
/
<a href="<?php comments_link(); ?>"><?php comments_number( '<span>No Comments</span>', '1 Comment', '% comments' ); ?></a>
</span>
</div>
</footer>
</div>
</article>