-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
29 lines (25 loc) · 1.2 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="utf-8">
<meta name="keywords" content="philipp phil baranovskiy ninja">
<meta name="description" content="<?php bloginfo('description'); ?>">
<meta name="viewport" content="initial-scale=1, width=device-width">
<link rel="icon" href="<?php bloginfo("template_directory"); ?>/fav16.png" sizes="16x16" type="image/png">
<link rel="icon" href="<?php bloginfo("template_directory"); ?>/fav32.png" sizes="32x32" type="image/png">
<link rel="stylesheet" type="text/css" href="<?php bloginfo("template_directory"); ?>/custom_css/skeleton.css">
<link rel="stylesheet" type="text/css" href="<?php bloginfo("template_directory"); ?>/style.css">
<?php if (is_home()) : ?>
<link rel="stylesheet" type="text/css" href="<?php bloginfo("template_directory"); ?>/custom_css/frontPage.css">
<?php endif; ?>
<?php if (is_single()) : ?>
<link rel="stylesheet" type="text/css" href="<?php bloginfo("template_directory"); ?>/custom_css/single.css">
<?php endif; ?>
<script type="text/javascript">
if (window.scrollY && window.scrollY == 0) {
setTimeout(function() { window.scrollTo(0,1); }, 0);
}
</script>
<?php wp_head(); ?>
</head>
<body>