Skip to content

Commit

Permalink
try redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
pbossman committed Aug 21, 2024
1 parent cab7f86 commit 3e91c49
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 75 deletions.
79 changes: 79 additions & 0 deletions pssaturday copy.html
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 -->
85 changes: 10 additions & 75 deletions pssaturday.html
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>

0 comments on commit 3e91c49

Please sign in to comment.