PluginProbe
Friends / 4.3.1
Friends v4.3.1
4.3.2 4.3.1 4.3.0 4.2.2 4.2.1 4.2.0 4.1.0 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.0 2.9.1 All 88 releases
friends / templates / mastodon / frontend / footer.php

footer.php in Friends 4.3.1, at templates/mastodon/frontend/footer.php

30 lines 967 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Mastodon theme: page footer.
4 *
5 * @package Friends
6 */
7
8 ?>
9 </div><!-- .mastodon-center-col -->
10
11 <!-- Right column: navigation sidebar -->
12 <aside class="mastodon-right-col" id="friends-sidebar">
13 <a class="mastodon-sidebar-close" href="#close" aria-label="<?php esc_attr_e( 'Close sidebar', 'friends' ); ?>">&times;</a>
14 <div class="mastodon-brand">
15 <a href="<?php echo esc_url( home_url( '/friends/' ) ); ?>"><h2><?php esc_html_e( 'Friends', 'friends' ); ?></h2></a>
16 </div>
17 <nav class="mastodon-right-nav">
18 <?php dynamic_sidebar( 'friends-sidebar' ); ?>
19 </nav>
20 <div class="mastodon-right-customize">
21 <a href="<?php echo esc_url( add_query_arg( 'url', home_url( '/friends/' ), admin_url( 'customize.php?autofocus[section]=sidebar-widgets-friends-sidebar' ) ) ); ?>"><?php esc_html_e( 'customize sidebar', 'friends' ); ?></a>
22 </div>
23 </aside>
24
25 <a class="mastodon-overlay" href="#close"></a>
26
27 <?php wp_footer(); ?>
28 </body>
29 </html>
30