Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Cornerstone
  • Loading branch information
jmr06005 committed Nov 16, 2018
1 parent 1a61c0c commit 23d6171
Show file tree
Hide file tree
Showing 140 changed files with 29,443 additions and 0 deletions.
18 changes: 18 additions & 0 deletions themes/cornerstone/.gitignore
@@ -0,0 +1,18 @@

_notes/dwsync.xml

inc/_notes/dwsync.xml

prepros.cfg

.DS_Store

*.scssc

*.codekit

sass/_notes/dwsync.xml

css/_notes/dwsync.xml

js/_notes/dwsync.xml
50 changes: 50 additions & 0 deletions themes/cornerstone/403.php
@@ -0,0 +1,50 @@
<?php
/**
* The template for displaying 403 pages (Forbidden).
*
* @package cornerstone
*/
get_header(); ?>
<div id="error403">
<div class="row">
<div class="col-sm-12">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<section class="error-403 not-found">
<div class="row">
<div class="col-sm-6">
<header class="page-header">
<h1 class="page-title"><?php _e( 'Error 403: Access Denied.', 'cs' ); ?></h1>
<p class="text-muted">You do not have the correct permissions for this page. Please contact the site administrator to gain access.</p>
</header><!-- .page-header -->
<div class="page-content">

<div class="col-sm-6">
<ul>
<?php
if (wp_get_nav_menu_object('404')){
$defaults = array(
'menu' => '404',
'container' => false,
'items_wrap' => '%3$s',
'depth' => 1,
'fallback_cb' => false
);
wp_nav_menu( $defaults );
}
?>
</ul>
</div>
</div><!-- .page-content -->
</div>
<div class="col-sm-6">
<img src="<?php bloginfo('template_directory'); ?>/img/JonathanStill-403.png" alt="Photo of a puppy."/>
</div>
</div>
</section><!-- .error-404 -->
</main><!-- #main -->
</div><!-- #primary -->
</div>
</div>
</div>
<?php get_footer(); ?>
53 changes: 53 additions & 0 deletions themes/cornerstone/404.php
@@ -0,0 +1,53 @@
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package cornerstone
*/
get_header(); ?>
<div id="error404">
<div class="row">
<div class="col-sm-12">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<section class="error-404 not-found">
<div class="row">
<div class="col-sm-6">
<header class="page-header">
<h1 class="page-title"><?php _e( 'I\'m Sorry... <br/>That page can&rsquo;t be found.', 'cs' ); ?></h1>
<p class="text-muted">Error 404: Page not found.</p>
</header><!-- .page-header -->
<div class="page-content">
<p><?php _e( 'It looks like nothing was found at this location. Maybe try one of the links above or a search?', 'cs' ); ?></p>
<div class="col-sm-6">
<?php get_search_form(); ?>
</div>
<div class="col-sm-6">
<ul>
<?php
if (wp_get_nav_menu_object('404')){
$defaults = array(
'menu' => '404',
'container' => false,
'items_wrap' => '%3$s',
'depth' => 1,
'fallback_cb' => false
);
wp_nav_menu( $defaults );
}
?>
</ul>
</div>
</div><!-- .page-content -->
</div>
<div class="col-sm-6">
<img src="<?php bloginfo('template_directory'); ?>/img/JonathanStill.jpg" alt="Photo of a puppy."/>
</div>
</div>
</section><!-- .error-404 -->
</main><!-- #main -->
</div><!-- #primary -->
</div>
</div>
</div>
<?php get_footer(); ?>
2 changes: 2 additions & 0 deletions themes/cornerstone/README.html
@@ -0,0 +1,2 @@
<h1 id="cornerstone">Cornerstone</h1>
<p>This is a project by the University of Connecticut Web Development Lab, to produce a starter theme for our projects. </p>
5 changes: 5 additions & 0 deletions themes/cornerstone/README.md
@@ -0,0 +1,5 @@
Cornerstone
===

This is a project by the University of Connecticut Web Development Lab, to produce a starter theme for our projects.

118 changes: 118 additions & 0 deletions themes/cornerstone/archive.php
@@ -0,0 +1,118 @@
<?php
/**
* The template for displaying Archive pages.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package cornerstone
*/

get_header(); ?>
<div id="page-archive">
<div class="row">
<div class="col-sm-9">
<section id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php if ( have_posts() ) : ?>
<header class="entry-header">

<h1 class="page-title">
<?php
if ( is_category() ) :
single_cat_title();

elseif ( is_tag() ) :
single_tag_title();

elseif ( is_author() ) :
printf( __( 'Author: %s', 'cs' ), '<span class="vcard">' . get_the_author() . '</span>' );

elseif ( is_day() ) :
printf( __( 'Day: %s', 'cs' ), '<span>' . get_the_date() . '</span>' );

elseif ( is_month() ) :
printf( __( 'Month: %s', 'cs' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'cs' ) ) . '</span>' );

elseif ( is_year() ) :
printf( __( 'Year: %s', 'cs' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'cs' ) ) . '</span>' );

elseif ( is_tax( 'post_format', 'post-format-aside' ) ) :
_e( 'Asides', 'cs' );

elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) :
_e( 'Galleries', 'cs');

elseif ( is_tax( 'post_format', 'post-format-image' ) ) :
_e( 'Images', 'cs');

elseif ( is_tax( 'post_format', 'post-format-video' ) ) :
_e( 'Videos', 'cs' );

elseif ( is_tax( 'post_format', 'post-format-quote' ) ) :
_e( 'Quotes', 'cs' );

elseif ( is_tax( 'post_format', 'post-format-link' ) ) :
_e( 'Links', 'cs' );

elseif ( is_tax( 'post_format', 'post-format-status' ) ) :
_e( 'Statuses', 'cs' );

elseif ( is_tax( 'post_format', 'post-format-audio' ) ) :
_e( 'Audios', 'cs' );

elseif ( is_tax( 'post_format', 'post-format-chat' ) ) :
_e( 'Chats', 'cs' );

elseif ( is_tax( 'group') || is_tax('persontag')):
global $wp_query;
$term = $wp_query->get_queried_object();
$name = $term->name;
echo $name;

else :
_e( 'Archives', 'cs' );

endif;
?>
</h1>
<?php
// Show an optional term description.
$term_description = term_description();
if ( ! empty( $term_description ) ) :
printf( '<div class="taxonomy-description">%s</div>', $term_description );
endif;
?>
</header><!-- .page-header -->

<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>

<?php
if ( is_tax( 'group') || is_tax('persontag')){
get_template_part( 'content', 'person' );
} else {
/* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
}
?>

<?php endwhile; ?>

<?php cs_paging_nav(); ?>

<?php else : ?>

<?php get_template_part( 'content', 'none' ); ?>

<?php endif; ?>

</main><!-- #main -->
</section><!-- #primary -->
</div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>
70 changes: 70 additions & 0 deletions themes/cornerstone/comments.php
@@ -0,0 +1,70 @@
<?php
/**
* The template for displaying Comments.
*
* The area of the page that contains both current comments
* and the comment form.
*
* @package cornerstone
*/

/*
* If the current post is protected by a password and
* the visitor has not yet entered the password we will
* return early without loading the comments.
*/
if ( post_password_required() ) {
return;
}
?>
<div id="comments" class="comments-area">

<?php // You can start editing here -- including this comment! ?>

<?php if ( have_comments() ) : ?>
<h2 class="comments-title">
<?php
printf( _nx( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'cs' ),
number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );
?>
</h2>

<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-above" class="comment-navigation" role="navigation">
<h1 class="screen-reader-text"><?php _e( 'Comment navigation', 'cs' ); ?></h1>
<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'cs' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'cs' ) ); ?></div>
</nav><!-- #comment-nav-above -->
<?php endif; // check for comment navigation ?>

<ol class="comment-list">
<?php
wp_list_comments( array(
'style' => 'ol',
'type' => 'comment',
'short_ping' => true,
'avatar_size' => 0,
) );
?>
</ol><!-- .comment-list -->

<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-below" class="comment-navigation" role="navigation">
<h1 class="screen-reader-text"><?php _e( 'Comment navigation', 'cs' ); ?></h1>
<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'cs' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'cs' ) ); ?></div>
</nav><!-- #comment-nav-below -->
<?php endif; // check for comment navigation ?>

<?php endif; // have_comments() ?>

<?php
// If comments are closed and there are comments, let's leave a little note, shall we?
if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
?>
<p class="no-comments"><?php _e( 'Comments are closed.', 'cs' ); ?></p>
<?php endif; ?>

<?php comment_form(); ?>

</div><!-- #comments -->

0 comments on commit 23d6171

Please sign in to comment.