Updated asset URLs to absolute paths
Switched all asset references to absolute URLs to ensure consistent resource loading, especially when the website is accessed from different subpaths. This change resolves the issue with relative paths causing resources to fail to load on pages outside of the root directory. It enhances reliability and user experience across the site.
This commit is contained in:
parent
965563ec16
commit
d159175915
4 changed files with 39 additions and 39 deletions
18
index.html
18
index.html
|
@ -8,11 +8,11 @@
|
|||
<title>Private.coffee</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="icon" type="image/svg+xml" href="assets/img/logo-inv.svg" />
|
||||
<link rel="stylesheet" href="assets/css/base.css" />
|
||||
<link rel="stylesheet" href="dist/css/bootstrap.min.css" />
|
||||
<script src="dist/js/jquery.min.js"></script>
|
||||
<script src="dist/js/bootstrap.bundle.min.js"></script>
|
||||
<link rel="icon" type="image/svg+xml" href="https://private.coffee/assets/img/logo-inv.svg" />
|
||||
<link rel="stylesheet" href="https://private.coffee/assets/css/base.css" />
|
||||
<link rel="stylesheet" href="https://private.coffee/dist/css/bootstrap.min.css" />
|
||||
<script src="https://private.coffee/dist/js/jquery.min.js"></script>
|
||||
<script src="https://private.coffee/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -21,7 +21,7 @@
|
|||
<a class="navbar-brand" href="/">
|
||||
<img
|
||||
class="navbar-brand-img"
|
||||
src="assets/img/logo-inv.svg"
|
||||
src="https://private.coffee/assets/img/logo-inv.svg"
|
||||
alt="Private.coffee logo"
|
||||
/>
|
||||
Private.coffee
|
||||
|
@ -328,13 +328,13 @@
|
|||
<h5 class="text-uppercase">Legalese</h5>
|
||||
<ul class="list-unstyled">
|
||||
<li>
|
||||
<a href="legal.html">Legal Notice</a>
|
||||
<a href="https://private.coffee/legal.html">Legal Notice</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="privacy.html">Privacy Policy</a>
|
||||
<a href="https://private.coffee/privacy.html">Privacy Policy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="terms.html">Terms of Service</a>
|
||||
<a href="https://private.coffee/terms.html">Terms of Service</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
20
legal.html
20
legal.html
|
@ -8,12 +8,12 @@
|
|||
<title>Private.coffee</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="icon" type="image/svg+xml" href="/assets/img/logo-inv.svg" />
|
||||
<link rel="stylesheet" href="/assets/css/base.css" />
|
||||
<link rel="stylesheet" href="/dist/css/bootstrap.min.css" />
|
||||
<script src="/dist/js/jquery.min.js"></script>
|
||||
<script src="/dist/js/popper.min.js"></script>
|
||||
<script src="/dist/js/bootstrap.min.js"></script>
|
||||
<link rel="icon" type="image/svg+xml" href="https://private.coffee/assets/img/logo-inv.svg" />
|
||||
<link rel="stylesheet" href="https://private.coffee/assets/css/base.css" />
|
||||
<link rel="stylesheet" href="https://private.coffee/dist/css/bootstrap.min.css" />
|
||||
<script src="https://private.coffee/dist/js/jquery.min.js"></script>
|
||||
<script src="https://private.coffee/dist/js/popper.min.js"></script>
|
||||
<script src="https://private.coffee/dist/js/bootstrap.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -21,7 +21,7 @@
|
|||
<a class="navbar-brand" href="/">
|
||||
<img
|
||||
class="navbar-brand-img"
|
||||
src="/assets/img/logo-inv.svg"
|
||||
src="https://private.coffee/assets/img/logo-inv.svg"
|
||||
alt="Private.coffee logo"
|
||||
/>
|
||||
Private.coffee
|
||||
|
@ -81,13 +81,13 @@
|
|||
<h5 class="text-uppercase">Legalese</h5>
|
||||
<ul class="list-unstyled">
|
||||
<li>
|
||||
<a href="legal.html">Legal Notice</a>
|
||||
<a href="https://private.coffee/legal.html">Legal Notice</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="privacy.html">Privacy Policy</a>
|
||||
<a href="https://private.coffee/privacy.html">Privacy Policy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="terms.html">Terms of Service</a>
|
||||
<a href="https://private.coffee/terms.html">Terms of Service</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
20
privacy.html
20
privacy.html
|
@ -8,12 +8,12 @@
|
|||
<title>Private.coffee</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="icon" type="image/svg+xml" href="/assets/img/logo-inv.svg" />
|
||||
<link rel="stylesheet" href="/assets/css/base.css" />
|
||||
<link rel="stylesheet" href="/dist/css/bootstrap.min.css" />
|
||||
<script src="/dist/js/jquery.min.js"></script>
|
||||
<script src="/dist/js/popper.min.js"></script>
|
||||
<script src="/dist/js/bootstrap.min.js"></script>
|
||||
<link rel="icon" type="image/svg+xml" href="https://private.coffee/assets/img/logo-inv.svg" />
|
||||
<link rel="stylesheet" href="https://private.coffee/assets/css/base.css" />
|
||||
<link rel="stylesheet" href="https://private.coffee/dist/css/bootstrap.min.css" />
|
||||
<script src="https://private.coffee/dist/js/jquery.min.js"></script>
|
||||
<script src="https://private.coffee/dist/js/popper.min.js"></script>
|
||||
<script src="https://private.coffee/dist/js/bootstrap.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -21,7 +21,7 @@
|
|||
<a class="navbar-brand" href="/">
|
||||
<img
|
||||
class="navbar-brand-img"
|
||||
src="/assets/img/logo-inv.svg"
|
||||
src="https://private.coffee/assets/img/logo-inv.svg"
|
||||
alt="Private.coffee logo"
|
||||
/>
|
||||
Private.coffee
|
||||
|
@ -209,13 +209,13 @@
|
|||
<h5 class="text-uppercase">Legalese</h5>
|
||||
<ul class="list-unstyled">
|
||||
<li>
|
||||
<a href="legal.html">Legal Notice</a>
|
||||
<a href="https://private.coffee/legal.html">Legal Notice</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="privacy.html">Privacy Policy</a>
|
||||
<a href="https://private.coffee/privacy.html">Privacy Policy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="terms.html">Terms of Service</a>
|
||||
<a href="https://private.coffee/terms.html">Terms of Service</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
20
terms.html
20
terms.html
|
@ -8,12 +8,12 @@
|
|||
<title>Private.coffee</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="icon" type="image/svg+xml" href="/assets/img/logo-inv.svg" />
|
||||
<link rel="stylesheet" href="/assets/css/base.css" />
|
||||
<link rel="stylesheet" href="/dist/css/bootstrap.min.css" />
|
||||
<script src="/dist/js/jquery.min.js"></script>
|
||||
<script src="/dist/js/popper.min.js"></script>
|
||||
<script src="/dist/js/bootstrap.min.js"></script>
|
||||
<link rel="icon" type="image/svg+xml" href="https://private.coffee/assets/img/logo-inv.svg" />
|
||||
<link rel="stylesheet" href="https://private.coffee/assets/css/base.css" />
|
||||
<link rel="stylesheet" href="https://private.coffee/dist/css/bootstrap.min.css" />
|
||||
<script src="https://private.coffee/dist/js/jquery.min.js"></script>
|
||||
<script src="https://private.coffee/dist/js/popper.min.js"></script>
|
||||
<script src="https://private.coffee/dist/js/bootstrap.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -21,7 +21,7 @@
|
|||
<a class="navbar-brand" href="/">
|
||||
<img
|
||||
class="navbar-brand-img"
|
||||
src="/assets/img/logo-inv.svg"
|
||||
src="https://private.coffee/assets/img/logo-inv.svg"
|
||||
alt="Private.coffee logo"
|
||||
/>
|
||||
Private.coffee
|
||||
|
@ -214,13 +214,13 @@
|
|||
<h5 class="text-uppercase">Legalese</h5>
|
||||
<ul class="list-unstyled">
|
||||
<li>
|
||||
<a href="legal.html">Legal Notice</a>
|
||||
<a href="https://private.coffee/legal.html">Legal Notice</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="privacy.html">Privacy Policy</a>
|
||||
<a href="https://private.coffee/privacy.html">Privacy Policy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="terms.html">Terms of Service</a>
|
||||
<a href="https://private.coffee/terms.html">Terms of Service</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue