-
Notifications
You must be signed in to change notification settings - Fork 24
/
pssaturday copy.html
79 lines (69 loc) · 2.06 KB
/
pssaturday copy.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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
layout: pssat
title: Research Triangle PowerShell Saturday
group:
tagline: Join us Sept. 21 2019
tags : [components]
img : pssaturday.png
img-mobile : pssaturday.png
author : rtpsug
css:
js:
keywords: components, demo
canonical: https://rtpsug.com
---
{% include JB/setup %}
<!-- Content Start -->
<div class="header-style-3">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6">
<figure>
<img src="{{ BASE_PATH }}/assets/images/RTP_Saturday_large.png" alt="">
</figure>
</div>
<div class="col-xs-12 col-sm-6">
<div class="hero-content-v2" style="margin-top: 0px">
<h3><strong>PowerShell Saturday is coming...<br>And Sunday too!</strong></h3>
<p>
The Research Triangle PowerShell users group is proud to host a full day of learning at NC State University
on September 21st, 2019.
<br>
We are also hosting a limited access, specialized 6 hour PowerShell cybersecurity session on Sunday,
September 22nd.
</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-md-center">
<div class="col col-lg-2">
</div>
<div class="col-md-auto">
<div class="clock" style="margin:2em;">
</div>
<div class="col col-lg-2">
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
var clock;
var endDate = '2019-09-21T13:00:00.000Z' // 09-21-2019 09:00 EDT (EDT = Zulu + 4)
$(document).ready(function () {
// Grab the current date
var currentDate = new Date();
// Set some date in the future. In this case, it's always Jan 1
var futureDate = new Date(endDate);
// Calculate the difference in seconds between the future and current date
var diff = futureDate.getTime() / 1000 - currentDate.getTime() / 1000;
// Instantiate a coutdown FlipClock
clock = $('.clock').FlipClock(diff, {
clockFace: 'DailyCounter',
countdown: true
});
});
</script>
<!-- Content End -->