Making WordPress.org


Ignore:
Timestamp:
05/02/2014 09:43:28 PM (12 years ago)
Author:
coffee2code
Message:

Code Reference: Various template and style improvements. props nicolealleyinteractivecom

  • Add plugin and theme handbook templates
  • Refactor templates
  • Refactor SCSS/CSS
  • SCSS/CSS cleanups
File:
1 moved

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/single-theme-handbook.php

    r572 r591  
    1 <?php
     1<?php namespace DevHub;
    22/**
    33 * The Template for displaying all single posts.
     
    88get_header(); ?>
    99
    10     <div id="primary" class="content-area has-sidebar">
     10    <div id="content-area" class="has-sidebar">
    1111
    12         <header class="page-header">
    13             <h1 class="page-title"><?php _e( 'Handbook', 'wporg' ); ?></h1>
    14         </header><!-- .page-header -->
     12        <?php breadcrumb_trail(); ?>
    1513
    1614        <main id="main" class="site-main" role="main">
     
    1816        <?php while ( have_posts() ) : the_post(); ?>
    1917
    20             <?php get_template_part( 'content', 'single' ); ?>
     18            <?php get_template_part( 'content', 'handbook'); ?>
     19
     20            <?php wporg_developer_post_nav(); ?>
    2121
    2222            <?php
Note: See TracChangeset for help on using the changeset viewer.