Changeset 3200 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/front-page.php
- Timestamp:
- 05/20/2016 09:01:31 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/front-page.php
r3193 r3200 36 36 endwhile; 37 37 ?> 38 39 38 </section> 40 39 … … 43 42 </main><!-- #main --> 44 43 44 <aside id="secondary" class="widget-area" role="complementary"> 45 <?php 46 $widget_args = array( 47 'before_title' => '<h4 class="widget-title">', 48 'after_title' => '</h4>', 49 ); 50 51 the_widget( 'WP_Widget_Text', array( 52 'title' => __( 'Plugin Authors', 'wporg-plugins' ), 53 'text' => __( 'Now what are the possibilities of warp drive? Cmdr Riker\'s nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That\'s why the transporter\'s biofilters couldn\'t extract it.', 'wporg-plugins' ), 54 ), $widget_args ); 55 56 the_widget( 'WP_Widget_Text', array( 57 'title' => __( 'Plugin Reviewers', 'wporg-plugins' ), 58 'text' => __( 'Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators.', 'wporg-plugins' ), 59 ), $widget_args ); 60 61 the_widget( 'WP_Widget_Text', array( 62 'title' => __( 'Plugin Handbook', 'wporg-plugins' ), 63 'text' => __( 'Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies.', 'wporg-plugins' ), 64 ), $widget_args ); 65 ?> 66 </aside><!-- #secondary --> 45 67 <?php 46 get_sidebar( 'front-page' );47 68 get_footer();
Note: See TracChangeset
for help on using the changeset viewer.