Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Initial Commit
  • Loading branch information
briandunnigan authored and briandunnigan committed Jan 7, 2016
0 parents commit bf8d9f3
Show file tree
Hide file tree
Showing 56 changed files with 23,325 additions and 0 deletions.
129 changes: 129 additions & 0 deletions archive.php
@@ -0,0 +1,129 @@
<?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-8">
<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('<span class="displaying-cat">Category: </span>');

elseif ( is_tag() ) :
single_tag_title('<span class="displaying-cat">Tagged: </span>');

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 class="displaying-cat">Day: </span>') . '</span>' );

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

elseif ( is_year() ) :
printf( __( '<span class="displaying-cat">Year:</span> %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>
<hr />
<?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(); ?>
<article id="post-<?php the_ID(); ?>" class="post type-post status-publish clearfix">
<div class="archive-thumbnail">
<?php the_post_thumbnail('thumbnail'); ?>
</div>
<header class="entry-header">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<p class="text-muted"><?php the_time('F j, Y'); ?></p>
</header>
<div class="entry-content">
<?php the_excerpt(); ?>
</div>
<!--<footer class="entry-footer clearfix">
<?php the_category(); ?>
</footer>-->
</article>

<hr />

<?php endwhile; ?>


<nav class="navigation">
<?php echo paginate_links( $args ); ?>
</nav>



<?php else : ?>

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

<?php endif; ?>

</main><!-- #main -->
</section><!-- #primary -->
</div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>
30 changes: 30 additions & 0 deletions content-featured-home.php
@@ -0,0 +1,30 @@
<?php
// This is used when viewing a featured home post.
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php /* if ( has_post_thumbnail() ) {
echo '<div class="row">';
echo '<div class="col-sm-2">';
the_post_thumbnail();
echo '</div>';
echo '<div class="col-sm-10">';
} */?>

<a href="<?php the_permalink() ?>">
<div class="image wrapper">
<?php the_post_thumbnail() ?>
</div>
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?></a>

<?php /*if ( has_post_thumbnail() ) {
echo '</div>';
echo '</div>';
} */?>

</header><!-- .entry-header -->

<div class="entry-content clearfix subpage">

</div><!-- .entry-content -->
</article><!-- #post-## -->
19 changes: 19 additions & 0 deletions content-featured-news-secondary.php
@@ -0,0 +1,19 @@
<?php
// This is used when viewing a featured news post.
?>
<article id="post-<?php the_ID(); ?>" class="news-archive-featured-secondary">
<header class="entry-header">

<div class="image-wrapper">
<a href="<?php the_permalink() ?>"> <?php the_post_thumbnail() ?> </a>
</div>
<div class="title-wrapper">
<a href="<?php the_permalink() ?>"><?php the_title( '<h1 class="entry-title">', '</h1>' ); ?></a>
</div>

</header><!-- .entry-header -->

<div class="entry-content clearfix subpage">

</div><!-- .entry-content -->
</article><!-- #post-## -->
19 changes: 19 additions & 0 deletions content-featured-news.php
@@ -0,0 +1,19 @@
<?php
// This is used when viewing a featured news post.
?>
<article id="post-<?php the_ID(); ?>" class="news-archive-featured">
<header class="entry-header">

<div class="image-wrapper">
<a href="<?php the_permalink() ?>"> <?php the_post_thumbnail() ?> </a>
</div>
<div class="title-wrapper">
<a href="<?php the_permalink() ?>"><?php the_title( '<h1 class="entry-title">', '</h1>' ); ?></a>
</div>

</header><!-- .entry-header -->

<div class="entry-content clearfix subpage">

</div><!-- .entry-content -->
</article><!-- #post-## -->
20 changes: 20 additions & 0 deletions content-in-the-media.php
@@ -0,0 +1,20 @@
<?php
// This is used when viewing Neag in the Media.
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">

<a href="<?php $key="neag-in-the-media-link"; echo get_post_meta($post->ID, $key, true); ?>">
<?php the_title( '<h1 class="in-the-media-entry-title">', '</h1>' ); ?></a>

<?php the_content() ?>
</header><!-- .entry-header -->

<!--<a href="<?php echo site_url(); ?>/category/neag-in-the-media">Read More &raquo;</a>-->



<div class="entry-content clearfix subpage">
</div><!-- .entry-content -->

</article><!-- #post-## -->
24 changes: 24 additions & 0 deletions content-news-archive.php
@@ -0,0 +1,24 @@
<?php
// This is used when viewing the news archive.
?>
<article id="post-<?php the_ID(); ?>" class="news-archive-story">
<header class="entry-header">
<div class="news-archive-preview-wrapper">

<div class="image-wrapper">
<a href="<?php the_permalink() ?>"><?php the_post_thumbnail('medium') ?></a>
</div>

<a href="<?php the_permalink() ?>"><?php the_title( '<h1 class="entry-title">', '</h1>' ); ?></a>
<p>by: <strong class="less-strong"><?php the_author() ?></strong>&nbsp; &nbsp;<span class="news-story-date"><?php the_time('F j, Y'); ?></span></p>
<?php the_excerpt() ?>
<!-- <?php the_tags('<ul><li>', '</li><li>', '</li></ul>') ?> -->
<?php the_category() ?>

</div>
</header><!-- .entry-header -->

<div class="entry-content clearfix subpage">

</div><!-- .entry-content -->
</article><!-- #post-## -->
56 changes: 56 additions & 0 deletions content-single.php
@@ -0,0 +1,56 @@
<?php
// This is used when viewing a single post.
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php /* if ( has_post_thumbnail() ) {
echo '<div class="row">';
echo '<div class="col-sm-2">';
the_post_thumbnail();
echo '</div>';
echo '<div class="col-sm-10">';
} */?>

<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
<div class="entry-meta">
<ul class="single-author-tags clearfix" >
<li class="single-author">by: <strong class="less-strong"><?php the_author(); ?></strong></li>
<li class="news-story-date"><?php the_time('F j, Y'); ?></li>
<li class="single-category"><?php the_category() ?></li>
</uli>

</div><!-- .entry-meta -->

<?php /*if ( has_post_thumbnail() ) {
echo '</div>';
echo '</div>';
} */?>

</header><!-- .entry-header -->

<div class="entry-content clearfix subpage">

<div class="single-content-wrapper">
<div class="single-featured-image">
<?php the_post_thumbnail('medium') ?>
</div>

<div class="single-content">
<?php the_content(); ?>
</div>
</div>

<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'cs' ),
'after' => '</div>',
) );
?>
</div>
<hr /><!-- .entry-content -->




</footer><!-- .entry-footer -->
</article><!-- #post-## -->

0 comments on commit bf8d9f3

Please sign in to comment.