-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
89 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,14 @@ | ||
--- | ||
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"> | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<head> | ||
<link rel="canonical" href="https://powershellsaturdaync.com" /> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
<meta http-equiv="refresh" content="0;url=https://powershellsaturdaync.com" /> | ||
</head> | ||
|
||
<body> | ||
</body> | ||
|
||
</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 --> | ||
</html> |