Created
August 8, 2017 13:36
-
-
Save domantasg/8624ce86906b6dfc06c9cf0b9bbd2afb to your computer and use it in GitHub Desktop.
This file contains hidden or 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-thin"> | |
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> | |
<article class="article-loop"> | |
<header> | |
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> | |
By: <?php the_author(); ?> | |
</header> | |
<?php the_excerpt(); ?> | |
</article> | |
<?php endwhile; else : ?> | |
<article> | |
<p>Sorry, no posts were found!</p> | |
</article> | |
<?php endif; ?> | |
</section><?php get_sidebar(); ?> | |
</main> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment