Make WordPress Core


Ignore:
Timestamp:
10/29/2019 08:11:06 PM (5 years ago)
Author:
desrosj
Message:

Help/About: Update the 5.3 About page for RC3.

Previously [46556], [46572].

Reviewed by azaozz, desrosj.
Merges [46616] to the 5.3 branch.
Props ryelle, SergeyBiryukov, afercia, desrosj, davidbaumwald, azaozz.
See #47708.

Location:
branches/5.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.3

  • branches/5.3/src/wp-admin/freedoms.php

    r46572 r46617  
    2222include( ABSPATH . 'wp-admin/admin-header.php' );
    2323?>
    24 <div class="wrap about-wrap full-width-layout">
     24<div class="wrap about__container">
    2525
    2626    <div class="about__header">
     
    3232        </div>
    3333
    34         <div class="about__header-badge wp-badge">
    35             <?php
    36             printf(
    37                 /* translators: %s: The current WordPress version number. */
    38                 __( 'Version %s' ),
    39                 $display_version
    40             );
    41             ?>
     34        <div class="about__header-badge">
     35            <img src="https://wordpress.org/images/core/5.4/code-is-poetry-rc.svg" alt="<?php _e( 'Code is Poetry' ); ?>" />
    4236        </div>
    4337
     
    6256    </div>
    6357
    64     <div class="about-wrap-content">
    65         <div class="feature-section has-1-columns">
    66             <h2><?php _e( 'Freedoms' ); ?></h2>
    67             <p class="about-description">
    68             <?php
    69             printf(
    70                 /* translators: %s: https://wordpress.org/about/license/ */
    71                 __( 'WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ),
    72                 __( 'https://wordpress.org/about/license/' )
    73             );
    74             ?>
    75             </p>
     58    <div class="about__section has-subtle-background-color is-feature">
     59        <h2><?php _e( 'Freedoms' ); ?></h2>
     60
     61        <p class="about-description">
     62        <?php
     63        printf(
     64            /* translators: %s: https://wordpress.org/about/license/ */
     65            __( 'WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ),
     66            __( 'https://wordpress.org/about/license/' )
     67        );
     68        ?>
     69        </p>
     70    </div>
     71
     72    <hr />
     73
     74    <div class="about__section has-4-columns">
     75        <div class="column">
     76            <div class="freedoms-image"></div>
     77            <h3><?php _e( 'The 1st Freedom' ); ?></h3>
     78            <p><?php _e( 'To run the program for any purpose.' ); ?></p>
    7679        </div>
     80        <div class="column">
     81            <div class="freedoms-image"></div>
     82            <h3><?php _e( 'The 2nd Freedom' ); ?></h3>
     83            <p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p>
     84        </div>
     85        <div class="column">
     86            <div class="freedoms-image"></div>
     87            <h3><?php _e( 'The 3rd Freedom' ); ?></h3>
     88            <p><?php _e( 'To redistribute.' ); ?></p>
     89        </div>
     90        <div class="column">
     91            <div class="freedoms-image"></div>
     92            <h3><?php _e( 'The 4th Freedom' ); ?></h3>
     93            <p><?php _e( 'To distribute copies of your modified versions to others.' ); ?></p>
     94        </div>
     95    </div>
    7796
    78         <div class="feature-section has-4-columns is-fullwidth">
    79             <div class="column">
    80                 <div class="freedoms-image"></div>
    81                 <h3><?php _e( 'The 1st Freedom' ); ?></h3>
    82                 <p><?php _e( 'To run the program for any purpose.' ); ?></p>
    83             </div>
    84             <div class="column">
    85                 <div class="freedoms-image"></div>
    86                 <h3><?php _e( 'The 2nd Freedom' ); ?></h3>
    87                 <p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p>
    88             </div>
    89             <div class="column">
    90                 <div class="freedoms-image"></div>
    91                 <h3><?php _e( 'The 3rd Freedom' ); ?></h3>
    92                 <p><?php _e( 'To redistribute.' ); ?></p>
    93             </div>
    94             <div class="column">
    95                 <div class="freedoms-image"></div>
    96                 <h3><?php _e( 'The 4th Freedom' ); ?></h3>
    97                 <p><?php _e( 'To distribute copies of your modified versions to others.' ); ?></p>
    98             </div>
    99         </div>
    100 
    101         <div class="feature-section has-1-columns">
     97    <div class="about__section">
     98        <div class="column">
    10299            <p>
    103100            <?php
Note: See TracChangeset for help on using the changeset viewer.