Making WordPress.org

Changeset 6899


Ignore:
Timestamp:
03/21/2018 06:30:36 AM (7 years ago)
Author:
dd32
Message:

Main: About: Replace h4 with h3, styling was done in r6898.

H/t rianrietveld.
See #3046.

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/functions.php

    r6878 r6899  
    6969 */
    7070function scripts() {
     71    wp_enqueue_style( 'wporg-style', get_theme_file_uri( '/css/style.css' ), [ 'dashicons', 'open-sans' ], '20180321' );
     72    wp_style_add_data( 'wporg-style', 'rtl', 'replace' );
     73
    7174    if ( is_page( 'stats' ) ) {
    7275        wp_enqueue_script( 'google-charts', 'https://www.gstatic.com/charts/loader.js', [], null, true );
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about.php

    r6887 r6899  
    6464                </section>
    6565
    66                 <section class="row gutters between">
     66                <section class="areas row gutters between">
    6767                    <div class="col-4">
    68                         <h4><?php esc_html_e( 'The Technology', 'wporg' ); ?></h4>
     68                        <h3><?php esc_html_e( 'The Technology', 'wporg' ); ?></h3>
    6969                        <p><?php esc_html_e( 'Learn about WordPress, where it&#8217;s been, and where it&#8217;s going.', 'wporg' ); ?></p>
    7070                        <ul>
     
    7777                    </div>
    7878                    <div class="col-4">
    79                         <h4><?php esc_html_e( 'The Details', 'wporg' ); ?></h4>
     79                        <h3><?php esc_html_e( 'The Details', 'wporg' ); ?></h3>
    8080                        <p><?php esc_html_e( 'There&#8217;s so much in the details. Stay abreast with the particulars.', 'wporg' ); ?></p>
    8181                        <ul>
     
    8888                    </div>
    8989                    <div class="col-4">
    90                         <h4><?php esc_html_e( 'The People', 'wporg' ); ?></h4>
     90                        <h3><?php esc_html_e( 'The People', 'wporg' ); ?></h3>
    9191                        <p><?php esc_html_e( 'Learn about the community and how we get along.', 'wporg' ); ?></p>
    9292                        <ul>
     
    123123                    <div class="col-3">
    124124                        <div class="graphic"></div>
    125                         <h4><?php esc_html_e( 'The 1st Freedom', 'wporg' ); ?></h4>
     125                        <h3><?php esc_html_e( 'The 1st Freedom', 'wporg' ); ?></h3>
    126126                        <p><?php esc_html_e( 'To run the program for any purpose.', 'wporg' ); ?></p>
    127127                    </div>
    128128                    <div class="col-3">
    129129                        <div class="graphic"></div>
    130                         <h4><?php esc_html_e( 'The 2nd Freedom', 'wporg' ); ?></h4>
     130                        <h3><?php esc_html_e( 'The 2nd Freedom', 'wporg' ); ?></h3>
    131131                        <p><?php esc_html_e( 'To study how the program works and change it to make it do what you wish.', 'wporg' ); ?></p>
    132132                    </div>
    133133                    <div class="col-3">
    134134                        <div class="graphic"></div>
    135                         <h4><?php esc_html_e( 'The 3rd Freedom', 'wporg' ); ?></h4>
     135                        <h3><?php esc_html_e( 'The 3rd Freedom', 'wporg' ); ?></h3>
    136136                        <p><?php esc_html_e( 'To redistribute.', 'wporg' ); ?></p>
    137137                    </div>
    138138                    <div class="col-3">
    139139                        <div class="graphic"></div>
    140                         <h4><?php esc_html_e( 'The 4th Freedom', 'wporg' ); ?></h4>
     140                        <h3><?php esc_html_e( 'The 4th Freedom', 'wporg' ); ?></h3>
    141141                        <p><?php esc_html_e( 'To distribute copies of your modified versions to others.', 'wporg' ); ?></p>
    142142                    </div>
Note: See TracChangeset for help on using the changeset viewer.