Making WordPress.org


Ignore:
Timestamp:
09/06/2017 10:13:34 PM (7 years ago)
Author:
obenland
Message:

WPorg/Main: First pass at blog-related templates.

See #2861.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg/template-parts/content-page.php

    r5884 r5892  
    1010?>
    1111
    12 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     12<article id="post-<?php the_ID(); ?>" <?php post_class( 'col-9' ); ?>>
    1313    <header class="entry-header">
    1414        <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
     
    2020
    2121        wp_link_pages( array(
    22             'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'wporg-plugins' ),
     22            'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'wporg' ),
    2323            'after'  => '</div>',
    2424        ) );
     
    3131            sprintf(
    3232            /* translators: %s: Name of current post */
    33                 esc_html__( 'Edit %s', 'wporg-plugins' ),
     33                esc_html__( 'Edit %s', 'wporg' ),
    3434                the_title( '<span class="screen-reader-text">"', '"</span>', false )
    3535            ),
     
    4040    </footer><!-- .entry-footer -->
    4141</article><!-- #post-## -->
     42<aside class="col-3" role="complementary">
     43    <?php get_sidebar( 'page' ); ?>
     44</aside>
Note: See TracChangeset for help on using the changeset viewer.