fair-parent-theme/inc/includes/linux-foundation-banner.php
Joe Dolson 57660ec05a Should be an aside, so content is contained in a landmark.
Signed-off-by: Joe Dolson <design@joedolson.com>
2025-06-27 09:23:25 -05:00

23 lines
No EOL
512 B
PHP

<?php
/**
* Output Linux Foundation Project banner.
*
* @package fair-parent
**/
namespace Fair_Parent;
/**
* Output the Linux Foundation Project Banner at the top of the `body` element.
*/
function fair_linux_banner() {
?>
<aside id="lf-header">
<div class="container">
<a href="https://www.linuxfoundation.org/projects">
<img src="<?php echo esc_url( get_template_directory_uri() ); ?>/svg/lfprojects_banner_other.svg" alt="The Linux Foundation Projects">
</a>
</div>
</aside>
<?php
}