2013-09-19 23:33:09 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Template Name: Contributor Page
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
2013-10-12 00:02:11 +02:00
|
|
|
* @since Twenty Fourteen 1.0
|
2013-09-19 23:33:09 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
2013-10-30 15:39:10 +01:00
|
|
|
<div id="main-content" class="main-content">
|
|
|
|
|
|
|
|
<?php
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_front_page() && twentyfourteen_has_featured_posts() ) {
|
|
|
|
// Include the featured content template.
|
|
|
|
get_template_part( 'featured-content' );
|
|
|
|
}
|
2013-10-30 15:39:10 +01:00
|
|
|
?>
|
|
|
|
|
2013-09-19 23:33:09 +02:00
|
|
|
<div id="primary" class="content-area">
|
2013-09-20 20:22:09 +02:00
|
|
|
<div id="content" class="site-content" role="main">
|
2013-09-19 23:33:09 +02:00
|
|
|
<?php
|
2020-01-29 01:45:18 +01:00
|
|
|
// Start the Loop.
|
2017-12-01 00:11:00 +01:00
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2013-09-19 23:33:09 +02:00
|
|
|
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2017-12-01 00:11:00 +01:00
|
|
|
the_title( '<header class="entry-header"><h1 class="entry-title">', '</h1></header><!-- .entry-header -->' );
|
2013-09-19 23:33:09 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
// Output the authors list.
|
|
|
|
twentyfourteen_list_authors();
|
2013-09-19 23:33:09 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
edit_post_link( __( 'Edit', 'twentyfourteen' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' );
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2019-04-16 03:30:53 +02:00
|
|
|
</article><!-- #post-<?php the_ID(); ?> -->
|
2013-09-19 23:33:09 +02:00
|
|
|
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2017-12-01 00:11:00 +01:00
|
|
|
// If comments are open or we have at least one comment, load up the comment template.
|
2018-08-17 03:51:36 +02:00
|
|
|
if ( comments_open() || get_comments_number() ) {
|
|
|
|
comments_template();
|
|
|
|
}
|
2013-09-19 23:33:09 +02:00
|
|
|
endwhile;
|
|
|
|
?>
|
|
|
|
</div><!-- #content -->
|
|
|
|
</div><!-- #primary -->
|
2013-10-30 15:39:10 +01:00
|
|
|
</div><!-- #main-content -->
|
2013-09-19 23:33:09 +02:00
|
|
|
|
|
|
|
<?php
|
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|