Created
May 21, 2014 13:57
-
-
Save pedrogpimenta/31b06f4d0aa592393fd5 to your computer and use it in GitHub Desktop.
Revisions
-
pedrogpimenta revised this gist
May 21, 2014 . 1 changed file with 1 addition and 34 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,34 +1 @@ defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool true -
pedrogpimenta created this gist
May 21, 2014 .There are no files selected for viewing
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 charactersOriginal 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'); ?>