-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
69 lines (43 loc) · 2.11 KB
/
Copy pathheader.php
File metadata and controls
69 lines (43 loc) · 2.11 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package wftowptheme
*/
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<?php get_template_part( 'partials/header/wfsitedata'); ?>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<!-- BELOW IS FROM WEBFLOW -->
<meta charset="utf-8">
<title>Portfolio - Webflow HTML website template</title>
<meta content="Portfolio - Webflow HTML website template" property="og:title">
<meta content="width=device-width, initial-scale=1" name="viewport">
<!-- REMOVE THE LINKS blow TO THE CSS AND then enqueu the css in the functions file -->
<!--
<link href="css/normalize.css" rel="stylesheet" type="text/css">
<link href="css/webflow.css" rel="stylesheet" type="text/css">
<link href="css/wf2wp.webflow.css" rel="stylesheet" type="text/css">
-->
<!-- WEBFLOW CHOSEN TYPFACES FOR HEADER below -->
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">WebFont.load({ google: { families: ["Montserrat:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic"] }});</script>
<!-- WEBFLOW CHOSEN TYPFACES FOR HEADER above -->
<link href="<?php echo get_template_directory_uri(); ?>/images/favicon.ico" rel="shortcut icon" type="image/x-icon">
<link href="<?php echo get_template_directory_uri(); ?>/images/webclip.png" rel="apple-touch-icon">
<!-- WEBFLOW ASSETS FOR HEADER Above -->
<!-- ABOVE IS FROM WEBFLOW -->
<?php wp_head(); ?>
</head>
<?php get_template_part( 'partials/header/nav'); ?>
<body>