mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
15 lines
478 B
PHP
15 lines
478 B
PHP
<?php
|
|
/**
|
|
* The Sidebar containing the main widget areas.
|
|
*
|
|
* @package Bushwick
|
|
*/
|
|
?>
|
|
|
|
<header id="masthead" class="site-header" role="banner">
|
|
<div class="site-branding">
|
|
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
|
|
<p class="site-description"><?php bloginfo( 'description' ); ?></p>
|
|
</div>
|
|
</header><!-- #masthead -->
|