Skip to content
wiki.fftac.org

FFTAC Who We Are Footer

**Site relevance:** FFTAC.org

**Memory type:** theme source memory

**Source path:** FFTAC/wp-content/themes/fftac-who-we-are/footer.php

**Size:** 1.7 KB

Summary

@package FFTAC Who We Are

Source Preview

This source file is short enough to preview directly on its source-memory page.

<?php
/**
 * Theme footer.
 *
 * @package FFTAC_Who_We_Are
 */
$contact_email = sanitize_email( fftac_theme_mod( 'fftac_contact_email', 'contact@fftac.org' ) );
$footer_note   = fftac_theme_mod( 'fftac_footer_note', 'This site rejects harassment, doxxing, violent extremism, and real-person villainization. Study the symbol. Do not turn people into targets.' );
?>
	<footer class="site-footer" id="contact" role="contentinfo">
		<div class="footer-inner">
			<div>
				<p class="section-kicker"><?php esc_html_e( 'Contact / Stewardship', 'fftac-who-we-are' ); ?></p>
				<h2 class="footer-title"><?php esc_html_e( 'Keep the archive sober, sourced, and humane.', 'fftac-who-we-are' ); ?></h2>
				<p class="footer-text">
					<?php esc_html_e( 'For corrections, source suggestions, community reports, or chapter inquiries, use the contact channel below. Public claims should be accountable; private people should not be turned into targets.', 'fftac-who-we-are' ); ?>
				</p>
				<?php if ( $contact_email ) : ?>
					<p><a class="button" href="mailto:<?php echo esc_attr( $contact_email ); ?>"><?php echo esc_html( $contact_email ); ?></a></p>
				<?php endif; ?>
			</div>
			<div>
				<p class="section-kicker"><?php esc_html_e( 'Sections', 'fftac-who-we-are' ); ?></p>
				<?php
				wp_nav_menu(
					array(
						'theme_location' => 'footer',
						'container'      => false,
						'menu_class'     => 'footer-links',
						'fallback_cb'    => 'fftac_footer_menu_fallback',
					)
				);
				?>
			</div>
		</div>
		<div class="footer-note">
			© <?php echo esc_html( gmdate( 'Y' ) ); ?> <?php bloginfo( 'name' ); ?>. <?php echo esc_html( $footer_note ); ?>
		</div>
	</footer>
</div>
<?php wp_footer(); ?>
</body>
</html>