2011-09-22 01:20:26 +02:00
< ? php
/**
* About This Version administration panel .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
require_once ( './admin.php' );
$title = __ ( 'About' );
2011-11-04 00:55:03 +01:00
list ( $display_version ) = explode ( '-' , $wp_version );
2011-09-22 01:20:26 +02:00
include ( './admin-header.php' );
?>
2011-11-04 00:13:50 +01:00
< div class = " wrap about-wrap " >
2011-09-22 01:20:26 +02:00
2011-11-04 00:55:03 +01:00
< h1 >< ? php printf ( __ ( 'Welcome to WordPress %s!' ), $display_version ); ?> </h1>
2011-09-22 01:20:26 +02:00
2011-11-04 00:23:31 +01:00
< div class = " about-text " >< ? php _e ( 'WordPress is web software you can use to create a beautiful website or blog. We like to say that WordPress is both free and priceless at the same time.' ); ?> </div>
2011-09-22 01:20:26 +02:00
2011-11-04 00:55:03 +01:00
< div class = " wp-badge " >< ? php printf ( __ ( 'Version %s' ), $display_version ); ?> </div>
2011-11-04 00:13:50 +01:00
< h2 class = " nav-tab-wrapper " >
2011-11-04 00:23:31 +01:00
< a href = " about.php " class = " nav-tab nav-tab-active " >
2011-11-04 00:55:03 +01:00
< ? php printf ( __ ( 'What’s New in %s' ), $display_version ); ?>
2011-11-04 00:23:31 +01:00
</ a >< a href = " credits.php " class = " nav-tab " >
2011-11-04 00:13:50 +01:00
< ? php _e ( 'Credits' ); ?>
2011-11-04 00:23:31 +01:00
</ a >< a href = " freedoms.php " class = " nav-tab " >
2011-11-04 00:13:50 +01:00
< ? php _e ( 'Freedoms' ); ?>
</ a >
</ h2 >
2011-09-22 01:20:26 +02:00
< div class = " changelog " >
< h3 >< ? php _e ( 'For Users' ); ?> </h3>
2011-11-04 00:13:50 +01:00
< div class = " feature-section angled-left " >
< div class = " left-feature " >
2011-11-04 14:57:45 +01:00
< h4 >< ? php echo ( 'Drag-and-Drop Media Uploader' ); ?> </h4>
< p >< ? php echo ( 'Add your media by simply dragging and dropping files from your computer into the new WordPress media uploader.' ); ?> </p>
2011-11-04 00:13:50 +01:00
</ div >
< img class = " placeholder " />
< div class = " right-feature " >
2011-11-04 14:57:45 +01:00
< h4 >< ? php echo ( 'A Responsive Admin' ); ?> </h4>
< p >< ? php echo ( 'The WordPress admin now responds and adjusts to more devices and screen resolutions for a better native experience.' ); ?> </p>
2011-11-04 00:13:50 +01:00
</ div >
</ div >
< div class = " feature-section angled-right " >
< div class = " left-feature " >
2011-11-04 14:57:45 +01:00
< h4 >< ? php echo ( 'New-user Experience' ); ?> </h4>
< p >< ? php echo ( 'New users get a helping hand. Updates come with this handy summary of what’s new in this version of WordPress.' ); ?> </p>
2011-11-04 00:13:50 +01:00
</ div >
< img class = " placeholder " />
< div class = " right-feature " >
2011-11-04 14:57:45 +01:00
< h4 >< ? php echo ( 'A New and Improved Admin Bar' ); ?> </h4>
< p >< ? php echo ( 'Get to the most useful areas of your dashboard form anywhere on your site quicker and easier than ever with a better organized admin bar.' ); ?> </p>
2011-11-04 00:13:50 +01:00
</ div >
</ div >
2011-09-22 01:20:26 +02:00
</ div >
< div class = " changelog " >
< h3 >< ? php _e ( 'For Developers' ); ?> </h3>
2011-11-04 00:13:50 +01:00
< div class = " feature-section " >
< div class = " left-feature " >
2011-11-04 14:57:45 +01:00
< h4 >< ? php echo ( 'Performance Enhancements' ); ?> </h4>
< p >< ? php echo ( 'Add your media by simply dragging and dropping files from your computer into the new WordPress media uploader.' ); ?> </p>
2011-11-04 00:13:50 +01:00
</ div >
< div class = " right-feature " >
2011-11-04 14:57:45 +01:00
< h4 >< ? php echo ( 'API: Settings Improvements' ); ?> </h4>
< p >< ? php echo ( 'The WordPress admin now responds and adjusts to more devices and screen resolutions for a better native experience.' ); ?> </p>
2011-11-04 00:13:50 +01:00
</ div >
</ div >
< div class = " feature-section " >
< div class = " left-feature " >
2011-11-04 14:57:45 +01:00
< h4 >< ? php echo ( 'More Efficient Updates and Upgrades' ); ?> </h4>
< p >< ? php echo ( 'New users get a helping hand. Updates come with this handy summary of what’s new in this version of WordPress.' ); ?> </p>
2011-11-04 00:13:50 +01:00
</ div >
< div class = " right-feature " >
2011-11-04 14:57:45 +01:00
< h4 >< ? php echo ( 'API: Meta Improvements' ); ?> </h4>
< p >< ? php echo ( 'Get to the most useful areas of your dashboard form anywhere on your site quicker and easier than ever with a better organized admin bar.' ); ?> </p>
2011-11-04 00:13:50 +01:00
</ div >
</ div >
2011-09-22 01:20:26 +02:00
</ div >
2011-11-04 00:13:50 +01:00
< div class = " return-to-dashboard " >
< a href = " <?php echo admin_url(); ?> " >< ? php _e ( 'Go to the Dashboard' ); ?> </a>
</ div >
2011-09-22 01:20:26 +02:00
</ div >
< ? php
include ( './admin-footer.php' );