-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
47 lines (45 loc) · 1.49 KB
/
Copy pathheader.php
File metadata and controls
47 lines (45 loc) · 1.49 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
<?
/**
* @author Flurin Dürst
* @version 1.3
* @since WPSeed 0.1
*/
?>
<!DOCTYPE html>
<html <? language_attributes(); ?>>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1, initial-scale=1, user-scalable=no">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<!--===== OPEN-GRAPH TAGS =====-->
<meta property="og:title" content="<? bloginfo('name'); ?>">
<meta property="og:description" content="<? bloginfo('description'); ?>">
<meta property="og:url" content="<? bloginfo('url'); ?>">
<meta property="og:image" content="<? bloginfo('template_url') ?>/dist/images/ogimg.jpg">
<meta property="og:image:width" content="">
<meta property="og:image:height" content="">
<? wp_head(); ?>
</head>
<body>
<div class="top">
<a href="<?= get_bloginfo('url'); ?>">
<div class="logo"></div>
</a>
<button class="hamburger--squeeze" id="hamburger" type="button">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
<nav id="nav_main" class="hiddenmobile">
<ul>
<? $frontPageID = get_option('page_on_front') ?>
<? wp_list_pages([
'depth' => 1,
'sort_column' => 'menu_order',
'title_li' => '',
'exclude' => $frontPageID
]);
?>
</ul>
</nav>
</div>