Skip to content

Instantly share code, notes, and snippets.

@johanoloflindberg
Forked from domantasg/page.php
Created January 10, 2019 19:01
Show Gist options
  • Save johanoloflindberg/bf53b6b06b174299334f70680c711a85 to your computer and use it in GitHub Desktop.
Save johanoloflindberg/bf53b6b06b174299334f70680c711a85 to your computer and use it in GitHub Desktop.
<?php get_header(); ?>
<main class="wrap">
<section class="content-area content-thin">
<?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 page was 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