Making WordPress.org

Ticket #4043: 4043.diff

File 4043.diff, 1.8 KB (added by mukesh27, 6 years ago)

Patch.

  • wordpress.org/public_html/wp-content/themes/pub/gutenberg/404.php

    diff --git a/wordpress.org/public_html/wp-content/themes/pub/gutenberg/404.php b/wordpress.org/public_html/wp-content/themes/pub/gutenberg/404.php
    index 4a69246..1e63aa5 100644
    a b get_header(); ?> 
    2222
    2323                                        <?php
    2424                                                get_search_form();
    25 
    26                                                 the_widget( 'WP_Widget_Recent_Posts' );
    27                                         ?>
    28 
    29                                         <div class="widget widget_categories">
    30                                                 <h2 class="widget-title"><?php esc_html_e( 'Most Used Categories', 'gutenbergtheme' ); ?></h2>
    31                                                 <ul>
    32                                                 <?php
    33                                                         wp_list_categories( array(
    34                                                                 'orderby'    => 'count',
    35                                                                 'order'      => 'DESC',
    36                                                                 'show_count' => 1,
    37                                                                 'title_li'   => '',
    38                                                                 'number'     => 10,
    39                                                         ) );
    40                                                 ?>
    41                                                 </ul>
    42                                         </div><!-- .widget -->
    43 
    44                                         <?php
    45 
    46                                                 /* translators: %1$s: smiley */
    47                                                 $archive_content = '<p>' . sprintf( esc_html__( 'Try looking in the monthly archives. %1$s', 'gutenbergtheme' ), convert_smilies( ':)' ) ) . '</p>';
    48                                                 the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$archive_content" );
    49 
    50                                                 the_widget( 'WP_Widget_Tag_Cloud' );
    5125                                        ?>
    52 
    5326                                </div><!-- .page-content -->
    5427                        </section><!-- .error-404 -->
    5528
  • wordpress.org/public_html/wp-content/themes/pub/gutenberg/style.css

    diff --git a/wordpress.org/public_html/wp-content/themes/pub/gutenberg/style.css b/wordpress.org/public_html/wp-content/themes/pub/gutenberg/style.css
    index 719a30e..6714aab 100644
    a b a.github-edit:hover > * { 
    16221622a.github-edit img {
    16231623        height: .8em;
    16241624}
     1625.error404 #content {
     1626  max-width: 960px;
     1627  margin: 0 auto;
     1628  display: flex;
     1629  min-height: 400px;
     1630}
     1631.error404 p {
     1632  margin: 1.5em auto;
     1633}