Files
vij/header.php

134 lines
5.1 KiB
PHP
Raw Normal View History

2021-09-16 12:14:35 +03:00
<!DOCTYPE html>
<html lang="ru">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
2022-04-11 22:13:36 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
2022-08-16 10:37:55 +03:00
<meta name="yandex-verification" content="257783249ab3fa7e" />
2022-04-11 22:13:36 +03:00
2021-10-11 22:29:11 +03:00
<title><?php wp_title('|', true, 'right');?><?=get_bloginfo('name')?></title>
2022-02-15 21:00:14 +03:00
<?if (defined('TESTMODE') and TESTMODE == 1):?>
2022-03-29 11:07:00 +03:00
<link rel="stylesheet" href="<?php echo get_template_directory_uri();?>/style-test.css?ver=3">
2022-02-15 21:00:14 +03:00
<?else:?>
2022-08-17 00:45:43 +03:00
<link rel="stylesheet" href="<?php echo get_stylesheet_uri();?>?ver=280">
2022-04-11 22:13:36 +03:00
<?endif?>
2022-03-29 11:07:00 +03:00
<link href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" rel="stylesheet">
2022-03-14 11:33:43 +03:00
<!--<link href="<?php echo get_stylesheet_directory_uri()?>/pub/fontawesome.css" rel="stylesheet">-->
2021-09-27 00:07:02 +03:00
<script type='text/javascript' src="<?php echo get_stylesheet_directory_uri()?>/scripts/jquery-3.6.0.min.js"></script>
2021-10-31 13:01:31 +03:00
<script type='text/javascript' src="<?php echo get_stylesheet_directory_uri()?>/scripts/golos.js"></script>
2021-10-11 22:29:11 +03:00
<meta property="og:title" content="<?php wp_title('|', true, 'right');?><?=get_bloginfo('name')?>" />
2022-08-16 10:37:55 +03:00
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<link type="image/x-icon" href="https://vetandlife.ru/favicon.ico" rel="shortcut icon">
<link type="Image/x-icon" href="https://vetandlife.ru/favicon.ico" rel="icon">
2021-10-11 22:29:11 +03:00
<?if (isset($post->ID)):?>
2021-10-31 13:01:31 +03:00
<meta property="og:description" content="<?=strip_tags(get_the_excerpt( $post->ID ))?>" />
2021-10-11 22:29:11 +03:00
<?if( has_post_thumbnail()):
$thumb_id = get_post_thumbnail_id($post->ID);
$thumb_url = wp_get_attachment_image_src($thumb_id,'large', false);?>
<meta property="og:image" content="<?=$thumb_url[0]?>">
<?endif?>
<?endif?>
2021-09-16 12:14:35 +03:00
<?php wp_head();?>
2021-10-10 15:16:51 +03:00
2022-04-26 00:46:54 +03:00
2022-02-15 21:00:14 +03:00
2021-09-16 12:14:35 +03:00
</head>
<body>
2022-03-12 16:30:23 +03:00
2022-02-15 21:00:14 +03:00
<?if (defined('TESTMODE') and TESTMODE == 1):?>
<style>
2022-04-26 00:46:54 +03:00
#testbanner{
2022-02-15 21:00:14 +03:00
width: 100%;
display: block;
padding: 10px;
}
2022-04-26 00:46:54 +03:00
#testbanner img {
2022-02-15 21:00:14 +03:00
display: block;
width: 100%;
2022-04-26 00:46:54 +03:00
max-width: 554px;
height: 86px;
2022-02-15 21:00:14 +03:00
margin: auto;
border: 1px solid black;
2022-04-26 00:46:54 +03:00
background-color: gray;
2022-02-15 21:00:14 +03:00
text-align: center;
}
</style>
2022-04-26 00:46:54 +03:00
<div id="testbanner">
<img />
</div>
<?else:?>
2022-02-15 21:00:14 +03:00
<div id="mainbanner">
2022-04-26 00:46:54 +03:00
<a href="https://vetandlife.ru/reklama-na-site/"><img src ="https://vetandlife.ru/wp-content/uploads/2022/04/2000x125_64c.gif" /></a>
</div>
<div id="mobmainbanner">
<a href="https://vetandlife.ru/reklama-na-site/"><img src =" https://vetandlife.ru/wp-content/uploads/2022/04/554x86.gif" /></a>
</div>
2022-02-15 21:00:14 +03:00
2022-04-06 00:10:37 +03:00
<?endif?>
2022-04-26 00:46:54 +03:00
2022-04-06 00:10:37 +03:00
2021-09-20 01:07:53 +03:00
2021-12-09 22:29:24 +03:00
<? $lang_version = lang_version();
if ($lang_version == 'en'){
$mainmenu = 'topenmenu';
2022-01-18 21:45:31 +03:00
$mob_main_menu = 'topmobmenu';
2021-12-09 22:29:24 +03:00
}
else {
$mainmenu = 'topmenu';
2022-02-15 21:00:14 +03:00
$mob_main_menu = 'mob_rubrics';
2021-12-09 22:29:24 +03:00
}
define('LANG_VERSION', $lang_version);
?>
2021-11-22 18:27:10 +03:00
<?php include TEMPLATEPATH.'/blocks/header.php';
//get_template_part( '/blocks/header.php');?>
<?php //include VIJ_CACHE.'header.html'?>
2021-09-27 00:07:02 +03:00
<?php $subclass = ''; ?>
2021-09-20 01:07:53 +03:00
2021-09-16 12:14:35 +03:00
<div id="main">
2021-09-28 22:25:21 +03:00
<div id="vert-title">
<?if (is_front_page()):?>
<div id="main-arrow"></div>
<?endif?>
<!--<div>Главное</div>-->
</div>
2021-12-28 23:31:56 +03:00