Permalink
Cannot retrieve contributors at this time
neag/single.php
Go to file<?php | |
/** | |
* The Template for displaying all single posts. | |
* | |
* @package cornerstone | |
*/ | |
$key="featured-news-link"; | |
$link = get_post_meta($post->ID, $key, true); | |
if(!empty($link)) wp_redirect($link); | |
get_header(); ?> | |
<div id="page-single"> | |
<div class="row"> | |
<div class="col-md-8"> | |
<div id="primary" class="content-area"> | |
<main id="main" class="site-main" role="main"> | |
<?php while ( have_posts() ) : the_post(); ?> | |
<?php get_template_part( 'content', 'single' ); ?> | |
<div id="social-buttons"> | |
Share on: <a href="http://www.facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>"><img src="<?php echo get_stylesheet_directory_uri().'/img/asset.f.logo.lg.png';?>" alt="facebook" />Facebook</a> | |
<a href="http://twitter.com/share?url=<?php the_permalink(); ?>&text=<?php echo get_the_excerpt(); ?>"><img src="<?php echo get_stylesheet_directory_uri().'/img/twitter-bird-white-on-blue.png';?>" alt="Twitter" />Twitter </a> | |
<a href="http://www.linkedin.com/shareArticle?url=<?php the_permalink(); ?>&title=<?php echo get_the_title(); ?>&summary=<?php echo get_the_excerpt(); ?>&source=<?php the_permalink(); ?>"> <img src="<?php echo get_stylesheet_directory_uri().'/img/linkedin.png';?>" alt="LinkedIn" />LinkedIn</a> | |
<a href="mailto:?subject=Shared from education.uconn.edu&body=<?php echo get_the_title(); ?>%0D%0A%0D%0A<?php the_permalink(); ?>"><img src="<?php echo get_stylesheet_directory_uri().'/img/email-icon.png';?>" alt="email" />Email</a> | |
</div> | |
<hr /> | |
<?php cs_post_nav(); ?> | |
<?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; | |
?> | |
<?php endwhile; // end of the loop. ?> | |
</main><!-- #main --> | |
</div><!-- #primary --> | |
</div> | |
<?php get_sidebar(); ?> | |
</div> | |
</div> | |
<?php get_footer(); ?> |