Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub
↵
Jump to
↵
In this user
All GitHub
↵
Jump to
↵
In this repository
All GitHub
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
jmr06005
/
cornerstone
Public
forked from
weblab/cornerstone
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security
Insights
Files
master
css
img
inc
js
min
sass
.gitignore
403.php
404.php
README.html
README.md
archive.php
comments.php
content-az.php
content-blank.php
content-featured_image.php
content-home.php
content-none.php
content-page.php
content-person.php
content-single.php
content.php
favicon.ico
footer.php
functions.php
header.php
index.php
page-az.php
page-blank.php
page-blog.php
page-home.php
page-pagebuilder-cards.php
page-pagebuilder.php
page-private.php
page-user-profile.php
page.php
prepros-6.config
screenshot.jpg
search.php
sidebar.php
single-person.php
single.php
style.css
style.css.map
style.scss
user-index-table.php
user-index.php
user-people.php
Breadcrumbs
cornerstone
/
content-featured_image.php
Blame
Blame
Latest commit
History
History
32 lines (27 loc) · 998 Bytes
Breadcrumbs
cornerstone
/
content-featured_image.php
Top
File metadata and controls
Code
Blame
32 lines (27 loc) · 998 Bytes
Raw
<?php /** * @package cs */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>> <header class="entry-header"> <?php the_post_thumbnail('large') ?> <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?> <?php if ( 'post' == get_post_type() ) : ?> <div class="entry-meta"> <span class="content-template-date"><?php the_time('F j, Y'); ?></span> </div><!-- .entry-meta --> <?php endif; ?> </header><!-- .entry-header --> <div class="entry-content"> <?php the_excerpt(); ?><span class="read_more"><a href="<?php the_permalink(); ?>">[Read More]</a></span> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'cs' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> <?php edit_post_link( __( 'Edit', 'cs' ), '<span class="edit-link">', '</span>' ); ?> </footer><!-- .entry-footer --> </article><!-- #post-## -->
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
You can’t perform that action at this time.