-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
executable file
·55 lines (36 loc) · 2.09 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
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
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<title><?php wp_title(''); ?></title>
<!--
___ ___ ___ ___ ___ ___ ___ ___
/\ \ /\__\ /\ \ /\__\ /\ \ |\__\ /\__\ /\ \
\:\ \ /:/ / /::\ \ /::| | /::\ \ |:| | /:/ / /::\ \
\:\ \ /:/__/ /:/\:\ \ /:|:| | /:/\:\ \ |:| | /:/ / /:/\ \ \
/::\ \ /::\ \ ___ /::\~\:\ \ /:/|:| |__ /::\~\:\ \ |:|__|__ /:/ / ___ _\:\~\ \ \
/:/\:\__\ /:/\:\ /\__\ /:/\:\ \:\__\ /:/ |:| /\__\ /:/\:\ \:\__\ ____/::::\__\ /:/__/ /\__\ /\ \:\ \ \__\
/:/ \/__/ \/__\:\/:/ / \:\~\:\ \/__/ \/__|:|/:/ / \:\~\:\ \/__/ \::::/~~/~ \:\ \ /:/ / \:\ \:\ \/__/
/:/ / \::/ / \:\ \:\__\ |:/:/ / \:\ \:\__\ ~~|:|~~| \:\ /:/ / \:\ \:\__\
\/__/ /:/ / \:\ \/__/ |::/ / \:\ \/__/ |:| | \:\/:/ / \:\/:/ /
/:/ / \:\__\ /:/ / \:\__\ |:| | \::/ / \::/ /
\/__/ \/__/ \/__/ \/__/ \|__| \/__/ \/__/
Constructed by Ryan Rampersad. Ping via @ryanmr on Twitter.
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=yes" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php do_action('before_universe'); ?>
<div id="universe">
<?php do_action('before_header'); ?>
<header id="header-container" role="header">
<div class="header-wrapper">
<?php do_action('before_identity'); ?>
<?php get_template_part('partials/identity'); ?>
<?php do_action('after_identity'); ?>
</div>
</header>
<?php do_action('after_header'); ?>
<?php do_action('before_galaxy'); ?>
<main id="galaxy" role="main">