Changeset 51356 for trunk/src/wp-admin/freedoms.php
- Timestamp:
- 07/06/2021 06:37:16 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/freedoms.php
r51264 r51356 43 43 </div> 44 44 45 <div class="about__section has-subtle-background-coloris-feature">45 <div class="about__section is-feature"> 46 46 <p class="about-description"> 47 47 <?php 48 48 printf( 49 49 /* translators: %s: https://wordpress.org/about/license/ */ 50 __( 'WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPresscomes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ),50 __( 'WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ), 51 51 __( 'https://wordpress.org/about/license/' ) 52 52 ); … … 55 55 </div> 56 56 57 <hr /> 58 59 <div class="about__section has-4-columns"> 60 <div class="column"> 61 <div class="freedoms-image"></div> 57 <div class="about__section has-2-columns"> 58 <div class="column aligncenter"> 59 <img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-1.svg' ) ); ?>" alt="" /> 62 60 <h2 class="is-smaller-heading"><?php _e( 'The 1st Freedom' ); ?></h2> 63 61 <p><?php _e( 'To run the program for any purpose.' ); ?></p> 64 62 </div> 65 <div class="column ">66 < div class="freedoms-image"></div>63 <div class="column aligncenter"> 64 <img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-2.svg' ) ); ?>" alt="" /> 67 65 <h2 class="is-smaller-heading"><?php _e( 'The 2nd Freedom' ); ?></h2> 68 66 <p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p> 69 67 </div> 70 <div class="column ">71 < div class="freedoms-image"></div>68 <div class="column aligncenter"> 69 <img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-3.svg' ) ); ?>" alt="" /> 72 70 <h2 class="is-smaller-heading"><?php _e( 'The 3rd Freedom' ); ?></h2> 73 71 <p><?php _e( 'To redistribute.' ); ?></p> 74 72 </div> 75 <div class="column ">76 < div class="freedoms-image"></div>73 <div class="column aligncenter"> 74 <img class="freedom-image" src="<?php echo esc_url( admin_url( 'images/freedom-4.svg' ) ); ?>" alt="" /> 77 75 <h2 class="is-smaller-heading"><?php _e( 'The 4th Freedom' ); ?></h2> 78 76 <p><?php _e( 'To distribute copies of your modified versions to others.' ); ?></p>
Note: See TracChangeset
for help on using the changeset viewer.