22 lines
757 B
PHP
22 lines
757 B
PHP
|
|
<!--[header/header-logo]-->
|
||
|
|
|
||
|
|
<a class="d-inline-block logo" href="/" title="Профиль">
|
||
|
|
|
||
|
|
<picture>
|
||
|
|
|
||
|
|
<?php if ( wp_is_mobile() ) : ?>
|
||
|
|
|
||
|
|
<img alt="Профиль" class="d-inline d-md-none" width="130" height="29" src="<?= get_template_directory_uri() ?>/assets/img/profile-logo-delovoy.svg" />
|
||
|
|
<img alt="Профиль" class="d-none d-md-inline" width="249" height="55" src="<?= get_template_directory_uri() ?>/assets/img/profile-logo-delovoy.svg" />
|
||
|
|
|
||
|
|
<?php else : ?>
|
||
|
|
|
||
|
|
<img alt="Профиль" width="249" height="55" src="<?= get_template_directory_uri() ?>/assets/img/profile-logo-delovoy.svg" />
|
||
|
|
|
||
|
|
<?php endif; ?>
|
||
|
|
|
||
|
|
</picture>
|
||
|
|
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<!--[/header/header-logo]-->
|