-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hopefully fixed issue with redirecting
- Loading branch information
1 parent
ecb5a75
commit 95d474a
Showing
5 changed files
with
86 additions
and
25 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,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title><%= htmlWebpackPlugin.options.title %></title> | ||
</head> | ||
<body> | ||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-3440932-20"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag("js", new Date()); | ||
gtag("config", "UA-3440932-20"); | ||
</script> | ||
<noscript> | ||
<div class="container"> | ||
<div class="col-md-8 col-md-offset-2"> | ||
<div class="panel panel-default"> | ||
<div class="panel-body"> | ||
<h2>Welcome to the PayEx DesignGuide</h2> | ||
<p>You need to <b>enable javascript</b> to use this site</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</noscript> | ||
<script> | ||
(function () { | ||
var basename = "<%= htmlWebpackPlugin.options.basename %>"; | ||
window.location = "https://design.payex.com" + basename + "404"; | ||
})(); | ||
</script> | ||
</body> | ||
</html> |
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,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title><%= htmlWebpackPlugin.options.title %></title> | ||
</head> | ||
<body> | ||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-3440932-20"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag("js", new Date()); | ||
gtag("config", "UA-3440932-20"); | ||
</script> | ||
<noscript> | ||
<div class="container"> | ||
<div class="col-md-8 col-md-offset-2"> | ||
<div class="panel panel-default"> | ||
<div class="panel-body"> | ||
<h2>Welcome to the PayEx DesignGuide</h2> | ||
<p>You need to <b>enable javascript</b> to use this site</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</noscript> | ||
<script> | ||
(function () { | ||
var basename = "<%= htmlWebpackPlugin.options.basename %>"; | ||
window.location = "https://design.payex.com" + basename; | ||
})(); | ||
</script> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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