-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
42 lines (39 loc) · 1.27 KB
/
header.php
File metadata and controls
42 lines (39 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>
<?php echo get_bloginfo('name'); ?>
</title>
<link rel="stylesheet" type="text/css" href="<?php echo get_bloginfo('template_directory'); ?>/assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="<?php echo get_bloginfo('template_directory'); ?>/style.css">
<!-- <link rel="stylesheet" type="text/css" href="<?php echo get_bloginfo('template_directory'); ?>/assets/bootstrap/css/bootstrap.min.css"> -->
<link href="https://fonts.googleapis.com/css?family=Didact+Gothic" rel="stylesheet">
<?php wp_head(); ?>
</head>
<body>
<header class="">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 offset-md-3 text-center header">
<h1 class="">
<a href="<?php echo get_bloginfo('wpurl'); ?>">
<?php echo get_bloginfo('name'); ?>
</a>
</h1>
<p class="">
<?php echo get_bloginfo('description'); ?>
</p>
</div>
</div>
<!-- Navigation -->
<div class="row navigation">
<div class="col-md-6 offset-md-3 text-center">
<nav>
<!-- <li><a class="" href="<?php echo get_bloginfo('wpurl'); ?>">Home</a></li> -->
<?php wp_list_pages('&title_li='); ?>
</nav>
</div>
</div>
<!-- /Navigation -->
</div>
</header>