Initial commit
This commit is contained in:
commit
28e6ddf404
1083 changed files with 191734 additions and 0 deletions
44
plugins/jetpack/_inc/footer.php
Normal file
44
plugins/jetpack/_inc/footer.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
</div><!-- .wrapper -->
|
||||
<div class="footer">
|
||||
|
||||
<nav class="primary nav-horizontal">
|
||||
<div class="a8c-attribution">
|
||||
<span>
|
||||
<?php echo sprintf( __( 'An %s Airline', 'jetpack' ),
|
||||
'<a href="http://automattic.com/" class="a8c-logo" target="_blank">Automattic</a>'
|
||||
); ?>
|
||||
</span>
|
||||
</div>
|
||||
</nav><!-- .primary -->
|
||||
|
||||
<nav class="secondary nav-horizontal">
|
||||
<div class="secondary-footer">
|
||||
<a href="http://jetpack.com" target="_blank">Jetpack <?php echo JETPACK__VERSION; ?></a>
|
||||
<a href="http://wordpress.com/tos/" target="_blank"><?php esc_html_e( 'Terms', 'jetpack' ); ?></a>
|
||||
<a href="http://automattic.com/privacy/" target="_blank"><?php esc_html_e( 'Privacy', 'jetpack' ); ?></a>
|
||||
<?php if ( current_user_can( 'jetpack_manage_modules' ) ) : ?><a href="<?php echo esc_url( Jetpack::admin_url( 'page=jetpack-debugger' ) ); ?>" title="<?php esc_attr_e( 'Test your site’s compatibility with Jetpack.', 'jetpack' ); ?>"><?php _e( 'Debug', 'jetpack' ); ?><?php endif; ?></a>
|
||||
<a href="http://jetpack.com/contact-support/" target="_blank" title="<?php esc_attr_e( 'Contact the Jetpack Happiness Squad.', 'jetpack' ); ?>"><?php _e( 'Support', 'jetpack' ); ?></a>
|
||||
<a href="http://jetpack.com/survey/?rel=<?php echo JETPACK__VERSION; ?>" target="_blank" title="<?php esc_attr_e( 'Take a survey. Tell us how we’re doing.', 'jetpack' ); ?>"><?php _e( 'Give Us Feedback', 'jetpack' ); ?></a>
|
||||
<?php if ( Jetpack::is_active() && current_user_can( 'jetpack_disconnect' ) ) : ?>
|
||||
<a href="<?php echo esc_url( Jetpack::admin_url( 'page=my_jetpack#disconnect' ) ); ?>"><?php esc_html_e( 'Disconnect Jetpack', 'jetpack' ); ?></a>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</nav><!-- .secondary -->
|
||||
</div><!-- .footer -->
|
||||
|
||||
<div class="modal" aria-labelledby="modal-label">
|
||||
<header>
|
||||
<a href="#" class="close">×</a>
|
||||
<ul>
|
||||
<li class="learn-more"><a href="javascript:;" data-tab="learn-more"><?php esc_html_e( 'Learn More', 'jetpack' ); ?></a></li>
|
||||
<li class="config"><a href="javascript:;" data-tab="config"><?php esc_html_e( 'Config', 'jetpack' ); ?></a></li>
|
||||
</ul>
|
||||
</header>
|
||||
<div class="content-container"><div class="content"></div></div>
|
||||
</div>
|
||||
<div class="shade"></div>
|
||||
|
||||
</div><!-- .jp-frame -->
|
||||
</div><!-- .jp-content -->
|
||||
|
||||
<?php if ( 'jetpack_modules' == $_GET['page'] ) return; ?>
|
Reference in a new issue