Changeset 13893 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2024/patterns/sidebar-details.php
- Timestamp:
- 07/10/2024 06:17:54 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2024/patterns/sidebar-details.php
r13891 r13893 12 12 <!-- wp:wporg-learn/sidebar-meta-list {"type":"course","fontSize":"normal"} /--> 13 13 14 <!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"400","lineHeight":"34px"}},"fontSize":"large","fontFamily":"inter"} --> 15 <p class="has-inter-font-family has-large-font-size" id="suggestions" style="font-style:normal;font-weight:400;line-height:34px"> 16 <?php esc_html_e( 'Suggestions', 'wporg-learn' ); ?> 17 </p> 18 <!-- /wp:paragraph --> 14 <!-- wp:group {"layout":{"type":"constrained"}} --> 15 <div class="wp-block-group"> 19 16 20 <!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"400,"lineHeight":"26px"},"spacing":{"margin":{"bottom":"40px"}}},"fontSize":"normal","fontFamily":"inter"} -->21 <p class="has-inter-font-family has-normal-font-size" style="margin-bottom:40px;font-style:normal;font-weight:400;line-height:26px">22 <?php esc_html_e( 'Found a typo, grammar error or outdated screenshot? ', 'wporg-learn' ); ?><a href="https://learn.wordpress.org/report-content-feedback/"><?php esc_html_e( 'Contact us', 'wporg-learn' ); ?></a>23 </p>24 <!-- /wp:paragraph-->17 <!-- wp:heading {"level":2,"fontSize":"large"} --> 18 <h2 class="wp-block-heading has-large-font-size"> 19 <?php esc_html_e( 'Suggestions', 'wporg-learn' ); ?> 20 </h2> 21 <!-- /wp:heading --> 25 22 26 <!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"400","lineHeight":"34px"}},"fontSize":"large","fontFamily":"inter"} --> 27 <p class="has-inter-font-family has-large-font-size" id="suggestions" style="font-style:normal;font-weight:400;line-height:34px"> 28 <?php esc_html_e( 'License', 'wporg-learn' ); ?> 29 </p> 30 <!-- /wp:paragraph --> 23 <!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"400,"lineHeight":"26px"}},"fontSize":"normal","fontFamily":"inter"} --> 24 <p class="has-inter-font-family has-normal-font-size" style="font-style:normal;font-weight:400;line-height:26px"> 25 <?php echo wp_kses_post( 26 sprintf( 27 /* translators: 1: Report content feedback link */ 28 __( 'Found a typo, grammar error or outdated screenshot? <a href="%s">Contact us</a>.', 'wporg-learn' ), 29 'https://learn.wordpress.org/report-content-feedback/', 30 ) 31 ); ?> 32 </p> 33 <!-- /wp:paragraph --> 31 34 32 <!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"400,"lineHeight":"26px"}},"fontSize":"normal","fontFamily":"inter"} --> 33 <p class="has-inter-font-family has-normal-font-size" style="font-style:normal;font-weight:400;line-height:26px"> 34 <?php esc_html_e( 'This work is licensed under a ', 'wporg-learn' ); ?><a href="http://creativecommons.org/licenses/by-sa/4.0/"><?php esc_html_e( 'Creative Commons Attribution-ShareAlike 4.0 International License', 'wporg-learn' ); ?></a>. 35 </p> 36 <!-- /wp:paragraph --> 35 </div> 36 <!-- /wp:group --> 37 38 <!-- wp:group {"layout":{"type":"constrained"}} --> 39 <div class="wp-block-group"> 40 41 <!-- wp:heading {"level":2,"fontSize":"large"} --> 42 <h2 class="wp-block-heading has-large-font-size"> 43 <?php esc_html_e( 'License', 'wporg-learn' ); ?> 44 </h2> 45 <!-- /wp:heading --> 46 47 <!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"400,"lineHeight":"26px"}},"fontSize":"normal","fontFamily":"inter"} --> 48 <p class="has-inter-font-family has-normal-font-size" style="font-style:normal;font-weight:400;line-height:26px"> 49 <?php echo wp_kses_post( 50 sprintf( 51 /* translators: 1: License link */ 52 __( '<a href="%s">CC BY-SA 4.0 <span aria-hidden="true" class="wp-exclude-emoji">↗</span></a>', 'wporg-learn' ), 53 'http://creativecommons.org/licenses/by-sa/4.0/', 54 ) 55 ); ?> 56 </p> 57 <!-- /wp:paragraph --> 58 59 </div> 60 <!-- /wp:group -->
Note: See TracChangeset
for help on using the changeset viewer.