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
b7b3a70
_notes
css
img
inc
js
layouts
min
sass
404.php
README.html
README.md
archive.php
comments.php
content-home.php
content-none.php
content-page.php
content-single.php
content.php
footer.php
functions.php
header.php
index.php
mega-footer.php
page-az.php
page-blog.php
page-home.php
page-user-profile.php
screenshot.png
search.php
sidebar.php
single.php
style.css
style.scss
Breadcrumbs
cornerstone
/
content-home.php
Blame
Blame
Latest commit
History
History
17 lines (17 loc) · 580 Bytes
Breadcrumbs
cornerstone
/
content-home.php
Top
File metadata and controls
Code
Blame
17 lines (17 loc) · 580 Bytes
Raw
<?php /** * The template used for displaying page content in page-home.php * Will only display if there is content. Does not display the page title. * @package cornerstone */ ?> <?php if (get_the_content() != null) { ?> <article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>> <div class="entry-content"> <?php the_content(); ?> </div><!-- .entry-content --> <footer class="entry-footer"> <?php edit_post_link( __( 'Edit', 'cs' ), '<span class="edit-link">', '</span>' ); ?> </footer><!-- .entry-footer --> </article><!-- #post-## --> <?php }?>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
You can’t perform that action at this time.