Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/js/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ var Downloads = {
if (window.history && window.history.pushState) {
var url = os === ''
? `${baseURLPrefix}downloads/guis`
: `${baseURLPrefix}download/guis?os=${os}`;
: `${baseURLPrefix}downloads/guis?os=${os}`;
try {
history.pushState(null, $(this).html(), url);
} catch (e) {
Expand Down
2 changes: 2 additions & 0 deletions content/downloads/guis/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
url: /downloads/guis.html
aliases:
- /downloads/guis/index.html
- /download/guis/index.html
- /download/guis.html
---

<div id="main">
Expand Down
2 changes: 1 addition & 1 deletion layouts/_default/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<meta name="robots" content="noindex">
</head>
<body>
<script>window.location.replace(document.querySelector("link[rel='canonical']").href + window.location.hash)</script>
<script>window.location.replace(document.querySelector("link[rel='canonical']").href + window.location.search + window.location.hash)</script>
<h1>Redirecting&hellip;</h1>
<a href="{{ $redirect_to }}">Click here if you are not redirected.</a>
</body>
Expand Down
2 changes: 1 addition & 1 deletion layouts/alias.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta name="robots" content="noindex">
</head>
<body>
<script>window.location.replace(document.querySelector("link[rel='canonical']").href + window.location.hash)</script>
<script>window.location.replace(document.querySelector("link[rel='canonical']").href + window.location.search + window.location.hash)</script>
<h1>Redirecting&hellip;</h1>
<a href="{{ $redirect_to }}">Click here if you are not redirected.</a>
</body>
Expand Down
Loading