-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
62 lines (59 loc) · 2.57 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
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Locus 2016</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href='https://fonts.googleapis.com/css?family=Lato:400,300,100' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href="<?php bloginfo('stylesheet_url');?>" rel="stylesheet">
<style>
#header-section{
background-image: url("<?php echo get_template_directory_uri().'/img/header-bg.jpg'; ?>");
color: #fff;
height: 100%;
background-color: #404040;
background-blend-mode: multiply;
background-size: cover;
background-attachment: fixed;
background-position: center center;
}
#footer-section{
background-image: url("<?php echo get_template_directory_uri().'/img/header-bg.jpg'; ?>");
color: #fff;
min-height: 300px;
background-color: #404040;
background-blend-mode: multiply;
background-size: cover;
background-position: center center;
padding-top: 50px;
background-attachment: fixed;
}
</style>
<?php wp_head(); ?>
</head>
<body >
<div id="header-section">
<div id="header-menu">
<a href="http://locus.ioe.edu.np/leblog/" class="menu-item">Blog</a>
<a href="http://locus.ioe.edu.np/leevent/" class="menu-item">Events</a>
<a href="http://locus.ioe.edu.np/legallery/" class="menu-item">Gallery</a>
</div>
<div class="site-info">
<div>
<img id="title" src="<?php echo get_template_directory_uri().'/img/title.png'; ?>">
</div>
<!-- <div>
<div class="title">Locus <span class="year">2016<span></div>
<div class="extra">Empowering Innovation</div>
</div> -->
<div id="countdown-timer" class="hidden">
<span id="days-remain" class="time-element"><span class="time"></span><span class="label ">d</span></span>
<span id="hours-remain" class="time-element"><span class="time"></span><span class="label ">h</span></span>
<span id="mins-remain" class="time-element"><span class="time"></span><span class="label ">m</span></span>
<span id="secs-remain" class="time-element"><span class="time"></span><span class="label ">s</span></span>
</div>
</div>
</div>