Created
May 21, 2014 13:57
-
-
Save pedrogpimenta/31b06f4d0aa592393fd5 to your computer and use it in GitHub Desktop.
activate AirDrop through Ethernet
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 | |
| /* | |
| Template Name: Empty template | |
| */ | |
| require_once('header.php'); ?> | |
| <?php while ( have_posts() ) : the_post(); ?> | |
| <div class="main-containers"> | |
| <section class="part-section"> | |
| <div class="container"> | |
| <div class="page-title"> | |
| <h1 class="page-title-heading"><?php the_title(); ?></h1> | |
| </div> | |
| <div class="two-cols"> | |
| <div class="main twothirds"> | |
| <?php the_content(); ?> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| </div> | |
| <?php endwhile; ?> | |
| <?php require_once('footer.php'); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment