-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
35 lines (33 loc) · 1.72 KB
/
header.html
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
<!-- Intro Header -->
<header class="intro">
<canvas id="intro-background" class="intro-background"></canvas>
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="event-heading">{{ site.header.heading }}</h1>
{% if site.header.subheading %}
<h2 class="event-subheading">{{ site.header.subheading }}</h2>
{% endif %}
{% if site.header.date-location %}
<h3 class="event-date-location">{{ site.header.date-location }}</h3>
{% endif %}
{% if site.header.countdown-date %}
<h3 id="event-countdown" class="event-countdown">
{% if site.header.countdown-text %}
<div class="event-countdown-text">{{ site.header.countdown-text }}</div>
{% endif %}
<span class="nowrap"><span id="d-left">0</span> <sub>days</sub></span>
<span class="nowrap"></span>/ <span id="h-left">00</span> <sub>hours</sub></span>
<span class="nowrap"></span>/ <span id="m-left">00</span></span> <sub>minutes</sub></span>
<span class="nowrap"></span>/ <span id="s-left">00</span></span> <sub>seconds</sub></span>
</h3>
{% endif %}
<a href="#about" class="btn btn-circle page-scroll">
<i class="fa fa-angle-double-down animated"></i>
</a>
</div>
</div>
</div>
</div>
</header>