diff --git a/src/wp-content/themes/twentynineteen/sass/site/header/_site-header.scss b/src/wp-content/themes/twentynineteen/sass/site/header/_site-header.scss
index 3f723ba..48ccacb 100644
|
a
|
b
|
|
| 121 | 121 | @include media(tablet) { |
| 122 | 122 | display: inline; |
| 123 | 123 | } |
| 124 | | |
| 125 | | &:not(:empty) + .site-description:not(:empty):before { |
| 126 | | content: "\2014"; |
| 127 | | margin: 0 .2em; |
| 128 | | } |
| 129 | 124 | } |
| 130 | 125 | |
| 131 | 126 | // Site description |
diff --git a/src/wp-content/themes/twentynineteen/template-parts/header/site-branding.php b/src/wp-content/themes/twentynineteen/template-parts/header/site-branding.php
index 03bc53b..9d95d0f 100644
|
a
|
b
|
|
| 25 | 25 | $description = get_bloginfo( 'description', 'display' ); |
| 26 | 26 | if ( $description || is_customize_preview() ) : |
| 27 | 27 | ?> |
| 28 | | <p class="site-description"> |
| 29 | | <?php echo $description; ?> |
| 30 | | </p> |
| | 28 | <p class="site-description"> |
| | 29 | <?php |
| | 30 | printf( |
| | 31 | /* translators: %s: Site description */ |
| | 32 | __('— %s', 'twentynineteen'), |
| | 33 | $description |
| | 34 | ); |
| | 35 | ?> |
| | 36 | </p> |
| 31 | 37 | <?php endif; ?> |
| 32 | 38 | <?php if ( has_nav_menu( 'menu-1' ) ) : ?> |
| 33 | 39 | <nav id="site-navigation" class="main-navigation" aria-label="<?php esc_attr_e( 'Top Menu', 'twentynineteen' ); ?>"> |