WordPress/wp-admin/about.php
2011-11-03 23:32:44 +00:00

95 lines
3.3 KiB
PHP

<?php
/**
* About This Version administration panel.
*
* @package WordPress
* @subpackage Administration
*/
/** WordPress Administration Bootstrap */
require_once( './admin.php' );
$title = __( 'About' );
$parent_file = 'index.php';
include( './admin-header.php' );
?>
<div class="wrap about-wrap">
<h1><?php _e( 'Welcome to WordPress 3.3!' ); ?></h1>
<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>
<div class="wp-badge"><?php _e( 'Version 3.3' ); ?></div>
<h2 class="nav-tab-wrapper">
<a href="about.php" class="nav-tab nav-tab-active">
<?php _e( 'What&#8217;s New in 3.3' ); ?>
</a><a href="credits.php" class="nav-tab">
<?php _e( 'Credits' ); ?>
</a><a href="freedoms.php" class="nav-tab">
<?php _e( 'Freedoms' ); ?>
</a>
</h2>
<div class="changelog">
<h3><?php _e('For Users'); ?></h3>
<div class="feature-section angled-left">
<div class="left-feature">
<h4><?php _e( 'Drag-and-Drop Media Uploader' ); ?></h4>
<p><?php _e( 'Add your media by simply dragging and dropping files from your computer into the new WordPress media uploader.' ); ?></p>
</div>
<img class="placeholder" />
<div class="right-feature">
<h4><?php _e( 'A Responsive Admin' ); ?></h4>
<p><?php _e( 'The WordPress admin now responds and adjusts to more devices and screen resolutions for a better native experience.' ); ?></p>
</div>
</div>
<div class="feature-section angled-right">
<div class="left-feature">
<h4><?php _e( 'New-user Experience' ); ?></h4>
<p><?php _e( 'New users get a helping hand. Updates come with this handy summary of what&#8217;s new in this version of WordPress.' ); ?></p>
</div>
<img class="placeholder" />
<div class="right-feature">
<h4><?php _e( 'A New and Improved Admin Bar' ); ?></h4>
<p><?php _e( '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>
</div>
</div>
</div>
<div class="changelog">
<h3><?php _e('For Developers'); ?></h3>
<div class="feature-section">
<div class="left-feature">
<h4><?php _e( 'Performance Enhancements' ); ?></h4>
<p><?php _e( 'Add your media by simply dragging and dropping files from your computer into the new WordPress media uploader.' ); ?></p>
</div>
<div class="right-feature">
<h4><?php _e( 'API: Settings Improvements' ); ?></h4>
<p><?php _e( 'The WordPress admin now responds and adjusts to more devices and screen resolutions for a better native experience.' ); ?></p>
</div>
</div>
<div class="feature-section">
<div class="left-feature">
<h4><?php _e( 'More Efficient Updates and Upgrades' ); ?></h4>
<p><?php _e( 'New users get a helping hand. Updates come with this handy summary of what&#8217;s new in this version of WordPress.' ); ?></p>
</div>
<div class="right-feature">
<h4><?php _e( 'API: Meta Improvements' ); ?></h4>
<p><?php _e( '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>
</div>
</div>
</div>
<div class="return-to-dashboard">
<a href="<?php echo admin_url(); ?>"><?php _e('Go to the Dashboard'); ?></a>
</div>
</div>
<?php
include( './admin-footer.php' );