Skip to content

Instantly share code, notes, and snippets.

@pedrogpimenta
Created May 21, 2014 13:57
Show Gist options
  • Select an option

  • Save pedrogpimenta/31b06f4d0aa592393fd5 to your computer and use it in GitHub Desktop.

Select an option

Save pedrogpimenta/31b06f4d0aa592393fd5 to your computer and use it in GitHub Desktop.

Revisions

  1. pedrogpimenta revised this gist May 21, 2014. 1 changed file with 1 addition and 34 deletions.
    35 changes: 1 addition & 34 deletions gistfile1
    Original file line number Diff line number Diff line change
    @@ -1,34 +1 @@
    <?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'); ?>
    defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool true
  2. pedrogpimenta created this gist May 21, 2014.
    34 changes: 34 additions & 0 deletions gistfile1
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,34 @@
    <?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'); ?>