-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
34 lines (27 loc) · 1.02 KB
/
header.php
File metadata and controls
34 lines (27 loc) · 1.02 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
<?php $dateHour = date('H'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="<?php bloginfo('charset'); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<?php wp_head(); ?>
<!-- meta -->
<meta name="revisit-after" content="7 days">
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;700&display=swap"
rel="stylesheet" />
</head>
<body>
<div id="loader-grid"
class="container-fluid transition p-0 bg-offorange vh-100 w-100 d-flex justify-content-center align-items-center">
<div>
<span class="loader">
<span class="loader-inner"></span>
</span>
<span class="d-inline-block text-orange fw-bold ms-2"> Loading</span>
</div>
</div>
<div class="main-body d-none transition animate__animated" style="display: initial">
<?php get_template_part( 'template-parts/header/nav-section' ); ?>