-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.php
31 lines (28 loc) · 1020 Bytes
/
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
<?php
/** Header template file
@package inpress
*/
get_header();
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<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">
<?php /* https://bulma.io */ ?>
<?php /* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script> */ ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php /* https://bulma.io/documentation/layout/hero */ ?>
<section class="hero is-info is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<h2 class="subtitle">Hero subtitle</h2>
<?php get_template_part( 'template-parts/navigation', 'none' ); ?>
</div>
</div>
</section>