Created
August 8, 2017 13:42
-
-
Save domantasg/7fa678e2362ff48dc3c6217d66547388 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php get_header(); ?> | |
<main class="wrap"> | |
<section class="content-area content-full-width"> | |
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> | |
<article class="article-full"> | |
<header> | |
<h2><?php the_title(); ?></h2> | |
By: <?php the_author(); ?> | |
</header> | |
<?php the_content(); ?> | |
</article> | |
<?php endwhile; else : ?> | |
<article> | |
<p>Sorry, no post was found!</p> | |
</article> | |
<?php endif; ?> | |
</section> | |
</main> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment