Changeset 4704
- Timestamp:
- 01/17/2017 05:42:20 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/page-homepage.php
r4248 r4704 20 20 <div> 21 21 <div class="info-box"> 22 <span class="dashicons dashicons-sos"></span> 23 <h3>Welcome to Support</h3> 24 <p>Our community-based Support Forums are a great place to learn, share, and troubleshoot.</p> 25 <p><a href="https://codex.wordpress.org/Getting_Started_with_WordPress">Start learning</a></p> 22 <span class="dashicons <?php 23 /* translators: dashicon class name for 'Welcome to Support' section. Do not translate into your own language. */ 24 esc_attr_e( 'dashicons-sos', 'wporg-forums' ); 25 ?>"></span> 26 <h3><?php _e( 'Welcome to Support', 'wporg-forums' ); ?></h3> 27 <p><?php _e( 'Our community-based Support Forums are a great place to learn, share, and troubleshoot.', 'wporg-forums' ); ?></p> 28 <p><?php _e( '<a href="https://codex.wordpress.org/Getting_Started_with_WordPress">Start learning</a>', 'wporg-forums' ); ?></p> 26 29 </div> 27 30 </div> 28 31 <div> 29 32 <div class="info-box"> 30 <span class="dashicons dashicons-portfolio"></span> 31 <h3>Documentation</h3> 32 <p>Your first stop where you'll find information on everything from installing to creating plugins.</p> 33 <p><a href="https://codex.wordpress.org/">Explore documentation</a></p> 33 <span class="dashicons <?php 34 /* translators: dashicon class name for 'Documentation' section. Do not translate into your own language. */ 35 esc_attr_e( 'dashicons-portfolio', 'wporg-forums' ); 36 ?>"></span> 37 <h3><?php _e( 'Documentation', 'wporg-forums' ); ?></h3> 38 <p><?php _e( 'Your first stop where you\'ll find information on everything from installing to creating plugins.', 'wporg-forums' ); ?></p> 39 <p><?php _e( '<a href="https://codex.wordpress.org/">Explore documentation</a>', 'wporg-forums' ); ?></p> 34 40 </div> 35 41 </div> 36 42 <div> 37 43 <div class="info-box"> 38 <span class="dashicons dashicons-hammer"></span> 39 <h3>Get Involved</h3> 40 <p>The Support Handbook is great for tips, tricks, and advice regarding giving the best support possible.</p> 41 <p><a href="https://make.wordpress.org/support/handbook/">Explore the Handbook</a></p> 44 <span class="dashicons <?php 45 /* translators: dashicon class name for 'Get Involved' section. Do not translate into your own language. */ 46 esc_attr_e( 'dashicons-hammer', 'wporg-forums' ); 47 ?>"></span> 48 <h3><?php _e( 'Get Involved', 'wporg-forums' ); ?></h3> 49 <p><?php _e( 'The Support Handbook is great for tips, tricks, and advice regarding giving the best support possible.', 'wporg-forums' ); ?></p> 50 <p><?php _e( '<a href="https://make.wordpress.org/support/handbook/">Explore the Handbook</a>', 'wporg-forums' ); ?></p> 42 51 </div> 43 52 </div>
Note: See TracChangeset
for help on using the changeset viewer.