Skip to content

Commit

Permalink
Merge pull request #87 from ONEARMY/dw-updating-countdown
Browse files Browse the repository at this point in the history
Adding countdown.js to all pages
  • Loading branch information
Mattia authored Oct 29, 2019
2 parents 3521563 + 7a8709d commit ceb25dc
Show file tree
Hide file tree
Showing 43 changed files with 91 additions and 54 deletions.
4 changes: 2 additions & 2 deletions css/webflow.css
Original file line number Diff line number Diff line change
Expand Up @@ -1580,7 +1580,7 @@ textarea.w-select {
}

.banner {
padding-top: 70px;
padding-top: 90px;
}

@media screen and (min-width: 991px) {
Expand All @@ -1598,7 +1598,7 @@ textarea.w-select {
text-align: center;
letter-spacing: 1px;
background-color: rgb(190, 214,226);
z-index: 2000;
z-index: 2001;
font-size: 15px;
}

Expand Down
1 change: 1 addition & 0 deletions en/community.html
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ <h5 class="btn-text btn-text-red white">Join our community</h5>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../js/webflow.js" type="text/javascript"></script>
<script src="../js/news.js" type="text/javascript"></script>
<script src="../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/creations.html
Original file line number Diff line number Diff line change
Expand Up @@ -238,5 +238,6 @@ <h5 class="btn-text btn-text-yellow">Start creating</h5>
html {font-size: 62.5%!important;}
w-webflow-badge {display: none!important; opacity: 0!important;}
</style>
<script src="../js/countdown.js" type="text/javascript"></script>
</body>
</html>
33 changes: 1 addition & 32 deletions en/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -402,38 +402,7 @@ <h1 class="h1-campaign">
type="text/javascript"
></script>
<script src="../js/webflow.js" type="text/javascript"></script>
<script>
// Taken from:
// https://www.w3schools.com/howto/howto_js_countdown.asp
// Set the date we're counting down to
const countDownDate = new Date("Jan 7, 2020 09:00:00").getTime();

// Update the count down every 1 second
const countdownInterval = setInterval(function() {
// Get today's date and time
const now = new Date().getTime();

// Find the distance between now and the count down date
const distance = countDownDate - now;

// Time calculations for days, hours, minutes and seconds
const days = Math.floor(distance / (1000 * 60 * 60 * 24));
const hours = Math.floor(
(distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)
);
const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((distance % (1000 * 60)) / 1000);

// Display the result in the element with id="demo"
document.getElementById("demo").innerHTML = `${days}d ${hours}h ${minutes}m ${seconds}s`;

// If the count down is finished, write some text
if (distance < 0) {
clearInterval(countdownInterval);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script>
<script src="../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {
Expand Down
1 change: 1 addition & 0 deletions en/machines.html
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ <h5 class="btn-text btn-text-red">Start building</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../js/webflow.js" type="text/javascript"></script>
<script src="../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/manifesto.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ <h2 class="h2-manifesto">Time &amp; effort</h2>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../js/webflow.js" type="text/javascript"></script>
<script src="../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/mission.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ <h1 class="h1 mission">Hello 🖐<br>We are Precious Plastic.<br><br>Precious Pl
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../js/webflow.js" type="text/javascript"></script>
<script src="../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/press.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,6 @@ <h6 class="h6-card-showcase">Check profile</h6>
html {font-size: 62.5%!important;}
w-webflow-badge {display: none!important; opacity: 0!important;}
</style>
<script src="../js/countdown.js" type="text/javascript"></script>
</body>
</html>
1 change: 1 addition & 0 deletions en/videos/build/compression.html
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ <h5 class="btn-text btn-text-nextchapter">Build the Injection</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/build/extrusion.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ <h5 class="btn-text btn-text-nextchapter">Check machines upgrades</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/build/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ <h5 class="btn-text btn-text-nextchapter">Build the shredder</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/build/injection.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ <h5 class="btn-text btn-text-nextchapter">Build the extrusion</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/build/shredder.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ <h5 class="btn-text btn-text-nextchapter">Next chapter</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/build/upgrades.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ <h5 class="btn-text btn-text-nextchapter">Watch next chapter</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
4 changes: 2 additions & 2 deletions en/videos/build/upgrades/compression2-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
</style>
</head>
<body class="body">
<a href="https://next.preciousplastic.com">
<!-- <a href="https://next.preciousplastic.com">
<div class="notification">
<div class="notification-content">
We are creating an army to start Precious Plastic Version 4. JOIN US! 💪
</div>
</div></a>
</div></a> -->
<div data-collapse="medium" data-animation="default" data-duration="400" class="navbar w-nav">
<div class="main-container">
<div class="flex-wrapper-navbar">
Expand Down
4 changes: 2 additions & 2 deletions en/videos/build/upgrades/extrusion-screw.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
</style>
</head>
<body class="body">
<a href="https://next.preciousplastic.com">
<!-- <a href="https://next.preciousplastic.com">
<div class="notification">
<div class="notification-content">
We are creating an army to start Precious Plastic Version 4. JOIN US! 💪
</div>
</div></a>
</div></a> -->
<div data-collapse="medium" data-animation="default" data-duration="400" class="navbar w-nav">
<div class="main-container">
<div class="flex-wrapper-navbar">
Expand Down
4 changes: 2 additions & 2 deletions en/videos/build/upgrades/insulation.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
</style>
</head>
<body class="body">
<a href="https://next.preciousplastic.com">
<!-- <a href="https://next.preciousplastic.com">
<div class="notification">
<div class="notification-content">
We are creating an army to start Precious Plastic Version 4. JOIN US! 💪
</div>
</div></a>
</div></a> -->
<div data-collapse="medium" data-animation="default" data-duration="400" class="navbar w-nav">
<div class="main-container">
<div class="flex-wrapper-navbar">
Expand Down
4 changes: 2 additions & 2 deletions en/videos/build/upgrades/laser-box.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
</style>
</head>
<body class="body">
<a href="https://next.preciousplastic.com">
<!-- <a href="https://next.preciousplastic.com">
<div class="notification">
<div class="notification-content">
We are creating an army to start Precious Plastic Version 4. JOIN US! 💪
</div>
</div></a>
</div></a> -->
<div data-collapse="medium" data-animation="default" data-duration="400" class="navbar w-nav">
<div class="main-container">
<div class="flex-wrapper-navbar">
Expand Down
4 changes: 2 additions & 2 deletions en/videos/build/upgrades/shredder-2-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
</style>
</head>
<body class="body">
<a href="https://next.preciousplastic.com">
<!-- <a href="https://next.preciousplastic.com">
<div class="notification">
<div class="notification-content">
We are creating an army to start Precious Plastic Version 4. JOIN US! 💪
</div>
</div></a>
</div></a> -->
<div data-collapse="medium" data-animation="default" data-duration="400" class="navbar w-nav">
<div class="main-container">
<div class="flex-wrapper-navbar">
Expand Down
4 changes: 2 additions & 2 deletions en/videos/build/upgrades/upgrade-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
</style>
</head>
<body class="body">
<a href="https://next.preciousplastic.com">
<!-- <a href="https://next.preciousplastic.com">
<div class="notification">
<div class="notification-content">
We are creating an army to start Precious Plastic Version 4. JOIN US! 💪
</div>
</div></a>
</div></a> -->
<div data-collapse="medium" data-animation="default" data-duration="400" class="navbar w-nav">
<div class="main-container">
<div class="flex-wrapper-navbar">
Expand Down
4 changes: 2 additions & 2 deletions en/videos/build/upgrades/wall-mount.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
</style>
</head>
<body class="body">
<a href="https://next.preciousplastic.com">
<!-- <a href="https://next.preciousplastic.com">
<div class="notification">
<div class="notification-content">
We are creating an army to start Precious Plastic Version 4. JOIN US! 💪
</div>
</div></a>
</div></a> -->
<div data-collapse="medium" data-animation="default" data-duration="400" class="navbar w-nav">
<div class="main-container">
<div class="flex-wrapper-navbar">
Expand Down
1 change: 1 addition & 0 deletions en/videos/collect.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ <h5 class="btn-text btn-text-nextchapter">Learn how to create</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../js/webflow.js" type="text/javascript"></script>
<script src="../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/create/create.html
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ <h5 class="btn-text btn-text-nextchapter">Explore techniques</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/create/creations.html
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ <h5 class="btn-text btn-text-nextchapter">Share your techniques</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/create/finishing.html
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ <h5 class="btn-text btn-text-nextchapter">Build your workspace!</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/create/techniques.html
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ <h5 class="btn-text btn-text-nextchapter">Learn from the community</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/done.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ <h5 class="btn-text">Support monthly</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../js/webflow.js" type="text/javascript"></script>
<script src="../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ <h5 class="btn-text btn-text-nextchapter">Download kit</h5><img src="../../image
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../js/webflow.js" type="text/javascript"></script>
<script src="../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/extra/bplan.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ <h5 class="btn-text btn-text-nextchapter">Next chapter</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/extra/builder.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ <h5 class="btn-text btn-text-nextchapter">Learn to make a video</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/extra/sell.html
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ <h5 class="btn-text btn-text-nextchapter">Become a machine builder</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/extra/video.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ <h5 class="btn-text btn-text-nextchapter">Watch next chapter</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ <h5 class="btn-text btn-text-nextchapter">Start learning</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../js/webflow.js" type="text/javascript"></script>
<script src="../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/intro.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ <h5 class="btn-text btn-text-nextchapter">Watch next chapter</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../js/webflow.js" type="text/javascript"></script>
<script src="../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/plastics.html
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ <h5 class="btn-text btn-text-nextchapter">Let&#x27;s start building</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../js/webflow.js" type="text/javascript"></script>
<script src="../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/questions.html
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ <h5 class="btn-text btn-text-nextchapter">Visit our forums</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../js/webflow.js" type="text/javascript"></script>
<script src="../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
1 change: 1 addition & 0 deletions en/videos/workspace/get.html
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ <h5 class="btn-text btn-text-nextchapter">Build the interiors</h5>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js" type="text/javascript"></script>
<script src="../../../js/webflow.js" type="text/javascript"></script>
<script src="../../../js/countdown.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
html {font-size: 62.5%!important;}
Expand Down
Loading

0 comments on commit ceb25dc

Please sign in to comment.