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
/
page-blank.php
Blame
Blame
Latest commit
History
History
29 lines (28 loc) · 953 Bytes
Breadcrumbs
cornerstone
/
page-blank.php
Top
File metadata and controls
Code
Blame
29 lines (28 loc) · 953 Bytes
Raw
<?php /** Template Name: Blank * This page template has no padding, and does not display the page title. * Useful for large images, iframes, or other edge cases. */ get_header(); ?> <div id="page-blank"> <?php include('inc/sidebar-check.php')?> <?php while ( have_posts() ) : the_post(); ?> <?php include('inc/submenu-check.php')?> <div class="row"> <div class="col-sm-<?php echo (is_active_sidebar( $sidebar )?9:12); ?>"> <?php cornerstone_breadcrumbs(); ?> <?php get_template_part( 'content', 'blank' ); ?> <?php // If comments are open or we have at least one comment, load up the comment template if ( comments_open() || '0' != get_comments_number() ) : comments_template(); endif; ?> </div> <?php include('inc/sidebar-if-active.php')?> </div> <?php include('inc/submenu-closing-tags.php')?> <?php endwhile; // end of the loop. ?> </div> <?php get_footer(); ?>
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
You can’t perform that action at this time.