Skip to content

Commit 6001405

Browse files
committed
Simplify and update redirect in index.html
Removed Matomo analytics script and updated the redirect URL to https://grails.apache.org/docs/. The HTML structure was simplified and improved for clarity.
1 parent 2003ca3 commit 6001405

1 file changed

Lines changed: 10 additions & 24 deletions

File tree

index.html

Lines changed: 10 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,10 @@
1-
<html>
2-
<head>
3-
<!-- Matomo -->
4-
<script>
5-
var _paq = window._paq = window._paq || [];
6-
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
7-
_paq.push(["setDoNotTrack", true]);
8-
_paq.push(["disableCookies"]);
9-
_paq.push(['trackPageView']);
10-
_paq.push(['enableLinkTracking']);
11-
(function() {
12-
var u="https://analytics.apache.org/";
13-
_paq.push(['setTrackerUrl', u+'matomo.php']);
14-
_paq.push(['setSiteId', '79']);
15-
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
16-
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
17-
})();
18-
</script>
19-
<!-- End Matomo Code -->
20-
<meta http-equiv="refresh" content="0; url=https://docs.grails.org/latest/" />
21-
</head>
22-
<body>Redirecting...</body>
23-
</html>
24-
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Redirecting...</title>
5+
<meta http-equiv="refresh" content="0; url=https://grails.apache.org/docs/"/>
6+
</head>
7+
<body>
8+
<p>This page has moved to <a href="https://grails.apache.org/docs/">https://grails.apache.org/docs/</a></p>
9+
</body>
10+
</html>

0 commit comments

Comments
 (0)