You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
4.2 KiB
103 lines
4.2 KiB
<?php |
|
/** |
|
* The template for displaying the footer |
|
* |
|
* Contains the closing of the #content div and all content after. |
|
* |
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials |
|
* |
|
* @package Aldine |
|
*/ |
|
?> |
|
|
|
<?php |
|
|
|
$network_facebook = get_option( 'pb_network_facebook' ); |
|
$network_twitter = get_option( 'pb_network_twitter' ); |
|
$pb_network_contact_form = get_option( 'pb_network_contact_form' ); |
|
|
|
?> |
|
|
|
</div><!-- #content --> |
|
|
|
<?php if ( $pb_network_contact_form ) : |
|
include( locate_template( 'partials/contact-form.php' ) ); |
|
endif; ?> |
|
|
|
<footer class="footer" role="contentinfo"> |
|
<div class="footer__inner"> |
|
<div class="footer__network"> |
|
<?php if ( is_active_sidebar( 'network-footer-block-1' ) ) { ?> |
|
<div class="footer__network__block footer__network__block--1"> |
|
<?php dynamic_sidebar( 'network-footer-block-1' ); ?> |
|
</div> |
|
<?php } ?> |
|
<?php if ( is_active_sidebar( 'network-footer-block-2' ) || ! empty( $network_facebook ) || ! empty( $network_twitter ) ) { ?> |
|
<div class="footer__network__block footer__network__block--2"> |
|
<?php dynamic_sidebar( 'network-footer-block-2' ); ?> |
|
<div class="social-media"> |
|
<?php if ( ! empty( $network_facebook ) ) { ?> |
|
<a class="facebook" href="<?php echo $network_facebook; ?>" title="<?php printf( __( '%s on Facebook', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?>"> |
|
<svg class="icon--svg"> |
|
<use xlink:href="#facebook" /> |
|
</svg> |
|
<span class="screen-reader-text"><?php printf( __( '%s on Facebook', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?></span> |
|
</a> |
|
<?php } ?> |
|
<?php if ( ! empty( $network_twitter ) ) { ?> |
|
<a class="twitter" href="<?php echo $network_twitter; ?>" title="<?php printf( __( '%s on Twitter', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?>"> |
|
<svg class="icon--svg"> |
|
<use xlink:href="#twitter" /> |
|
</svg> |
|
<span class="screen-reader-text"><?php printf( __( '%s on Twitter', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?></span> |
|
</a> |
|
<?php } ?> |
|
</div> |
|
</div> |
|
<?php } ?> |
|
<div class="footer__network__block footer__network__menu"> |
|
<?php wp_nav_menu( [ 'theme_location' => 'network-footer-menu' ] ); ?> |
|
</div> |
|
</div> |
|
<section class="footer__pressbooks"> |
|
<a class="footer__pressbooks__icon" href="https://pressbooks.com" title="Pressbooks"> |
|
<?php // TODO ?> |
|
<svg class="icon--svg"> |
|
<use xlink:href="#icon-pressbooks" /> |
|
</svg> |
|
</a> |
|
<div class="footer__pressbooks__links"> |
|
<p class="footer__pressbooks__links__title"><a href="https://pressbooks.com"><?php printf( __( 'Powered by %s', 'pressbooks-aldine' ), '<span class="pressbooks">Pressbooks</span>' ); ?></a></p> |
|
<ul class="footer__pressbooks__links__list"> |
|
<li><a href="https://pressbooks.org"><?php _e( 'Open Source', 'pressbooks-aldine' ); ?></a> |</li> |
|
<li><a href="https://pressbooks.education/"><?php _e( 'Open Textbooks', 'pressbooks-aldine' ); ?></a> |</li> |
|
<li><a href="https://pressbooks.com"><?php _e( 'Open Book Publishing', 'pressbooks-aldine' ); ?></a> |</li> |
|
<li><a href="https://pressbooks.education/about"><?php _e( 'Learn More', 'pressbooks-aldine' ); ?></a> </li> |
|
</ul> |
|
</div> |
|
<div class="footer__pressbooks__social"> |
|
<a class="facebook" href="https://facebook.com/pressbooks2" title="<?php _e( 'Pressbooks on Facebook', 'pressbooks-aldine' ); ?>"> |
|
<svg class="icon--svg"> |
|
<use xlink:href="#facebook" /> |
|
</svg> |
|
<span class="screen-reader-text"><?php _e( 'Pressbooks on Facebook', 'pressbooks-aldine' ); ?></span> |
|
</a> |
|
<a class="twitter" href="https://twitter.com/intent/follow?screen_name=pressbooks" title="<?php _e( 'Pressbooks on Twitter', 'pressbooks-aldine' ); ?>"> |
|
<svg class="icon--svg"> |
|
<use xlink:href="#twitter" /> |
|
</svg> |
|
<span class="screen-reader-text"><?php _e( 'Pressbooks on Twitter', 'pressbooks-aldine' ); ?></span></a> |
|
</div> |
|
|
|
</section> |
|
</div><!-- .container --> |
|
</footer><!-- .footer --> |
|
|
|
<?php get_template_part( 'partials/content', 'accessibility-toolbar' ); ?> |
|
|
|
</div> <!-- .site --> |
|
|
|
<?php wp_footer(); ?> |
|
|
|
</body> |
|
</html>
|
|
|