Skip to content

Commit

Permalink
Fix absolute paths
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk committed Jan 4, 2024
1 parent 44842f5 commit 4770bfc
Showing 1 changed file with 67 additions and 26 deletions.
93 changes: 67 additions & 26 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,27 +1,68 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><!--[if IE]><link rel="icon" href="/favicon.ico"><![endif]--><link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:300,400,500,600,700&display=swap" rel="stylesheet"><link href="https://rsms.me/inter/inter.css" rel="stylesheet"><title>aepp-base-home-page</title><link href="/js/locale-cn.720b5d6a.js" rel="prefetch"><link href="/js/locale-es.7aa7fd3a.js" rel="prefetch"><link href="/js/locale-ru.56ce33e6.js" rel="prefetch"><link href="/css/app.f506268e.css" rel="preload" as="style"><link href="/css/chunk-vendors.6c3cf8c1.css" rel="preload" as="style"><link href="/js/app.abd7e0cd.js" rel="preload" as="script"><link href="/js/chunk-vendors.7444eb86.js" rel="preload" as="script"><link href="/css/chunk-vendors.6c3cf8c1.css" rel="stylesheet"><link href="/css/app.f506268e.css" rel="stylesheet"><link rel="icon" type="image/png" sizes="32x32" href="/img/icons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/img/icons/favicon-16x16.png"><link rel="manifest" href="/manifest.json"><meta name="theme-color" content="#4DBA87"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="aepp-base-home-page"><link rel="apple-touch-icon" href="/img/icons/apple-touch-icon-152x152.png"><link rel="mask-icon" href="/img/icons/safari-pinned-tab.svg" color="#4DBA87"><meta name="msapplication-TileImage" content="/img/icons/msapplication-icon-144x144.png"><meta name="msapplication-TileColor" content="#000000"></head><body><noscript><strong>We're sorry but aepp-base-home-page doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script>// Single Page Apps for GitHub Pages
// https://github.com/rafrex/spa-github-pages
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License
// ----------------------------------------------------------------------
// This script checks to see if a redirect is present in the query string
// and converts it back into the correct url and adds it to the
// browser's history using window.history.replaceState(...),
// which won't cause the browser to attempt to load the new url.
// When the single page app is loaded further down in this file,
// the correct url will be waiting in the browser's history for
// the single page app to route accordingly.
(function(l) {
if (l.search) {
var q = {};
l.search.slice(1).split('&').forEach(function(v) {
var a = v.split('=');
q[a[0]] = a.slice(1).join('=').replace(/~and~/g, '&');
});
if (q.p !== undefined) {
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + (q.p || '') +
(q.q ? ('?' + q.q) : '') +
l.hash
);
}
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<!--[if IE]><link rel="icon" href="/aepp-base-home-page/favicon.ico"><![endif]-->
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:300,400,500,600,700&display=swap" rel="stylesheet">
<link href="https://rsms.me/inter/inter.css" rel="stylesheet">
<title>aepp-base-home-page</title>
<link href="/aepp-base-home-page/js/locale-cn.720b5d6a.js" rel="prefetch">
<link href="/aepp-base-home-page/js/locale-es.7aa7fd3a.js" rel="prefetch">
<link href="/aepp-base-home-page/js/locale-ru.56ce33e6.js" rel="prefetch">
<link href="/aepp-base-home-page/css/app.f506268e.css" rel="preload" as="style">
<link href="/aepp-base-home-page/css/chunk-vendors.6c3cf8c1.css" rel="preload" as="style">
<link href="/aepp-base-home-page/js/app.abd7e0cd.js" rel="preload" as="script">
<link href="/aepp-base-home-page/js/chunk-vendors.7444eb86.js" rel="preload" as="script">
<link href="/aepp-base-home-page/css/chunk-vendors.6c3cf8c1.css" rel="stylesheet">
<link href="/aepp-base-home-page/css/app.f506268e.css" rel="stylesheet">
<link rel="icon" type="image/png" sizes="32x32" href="/aepp-base-home-page/img/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/aepp-base-home-page/img/icons/favicon-16x16.png">
<link rel="manifest" href="/aepp-base-home-page/manifest.json">
<meta name="theme-color" content="#4DBA87">
<meta name="apple-mobile-web-app-capable" content="no">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="aepp-base-home-page">
<link rel="apple-touch-icon" href="/aepp-base-home-page/img/icons/apple-touch-icon-152x152.png">
<link rel="mask-icon" href="/aepp-base-home-page/img/icons/safari-pinned-tab.svg" color="#4DBA87">
<meta name="msapplication-TileImage" content="/aepp-base-home-page/img/icons/msapplication-icon-144x144.png">
<meta name="msapplication-TileColor" content="#000000">
</head>

<body><noscript><strong>We're sorry but aepp-base-home-page doesn't work properly without JavaScript enabled. Please
enable it to continue.</strong></noscript>
<div id="app"></div>
<script>// Single Page Apps for GitHub Pages
// https://github.com/rafrex/spa-github-pages
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License
// ----------------------------------------------------------------------
// This script checks to see if a redirect is present in the query string
// and converts it back into the correct url and adds it to the
// browser's history using window.history.replaceState(...),
// which won't cause the browser to attempt to load the new url.
// When the single page app is loaded further down in this file,
// the correct url will be waiting in the browser's history for
// the single page app to route accordingly.
(function (l) {
if (l.search) {
var q = {};
l.search.slice(1).split('&').forEach(function (v) {
var a = v.split('=');
q[a[0]] = a.slice(1).join('=').replace(/~and~/g, '&');
});
if (q.p !== undefined) {
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + (q.p || '') +
(q.q ? ('?' + q.q) : '') +
l.hash
);
}
}(window.location))</script><script src="/js/chunk-vendors.7444eb86.js"></script><script src="/js/app.abd7e0cd.js"></script></body></html>
}
}(window.location))</script>
<script src="/aepp-base-home-page/js/chunk-vendors.7444eb86.js"></script>
<script src="/aepp-base-home-page/js/app.abd7e0cd.js"></script>
</body>

</html>

0 comments on commit 4770bfc

Please sign in to comment.