Skip to content

Commit

Permalink
set relative paths for images on index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
kad-busses committed Jan 23, 2024
1 parent c5570fc commit cfc74a7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/images/favicon.ico" rel="icon" />
<link href="images/favicon.ico" rel="icon" />
<link rel="preconnect" href="https://rsms.me/" />
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" integrity="sha512-byor" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
Expand All @@ -15,7 +15,7 @@
<header class="input-sheet__logo">
<div>
<span>Powered by</span>
<a href="https://www.thoughtworks.com"><img src="/images/tw-logo.png" alt="Thoughtworks logo" /></a>
<a href="https://www.thoughtworks.com"><img src="images/tw-logo.png" alt="Thoughtworks logo" /></a>
</div>
</header>
<div class="hero-banner">
Expand All @@ -25,12 +25,12 @@ <h1 class="hero-banner__title-text">Build your own Radar</h1>
</div>
<main>
<div id="pdf-cover-page">
<img class="pdf-banner-image" src="/images/pdf_banner.png" alt="Pdf cover image" width="100%" height="300px" />
<img class="pdf-banner-image" src="images/pdf_banner.png" alt="Pdf cover image" width="100%" height="300px" />
<h1 class="pdf-title"></h1>
<div class="pdf-powered-by-text">
<span>Powered by</span>
<a href="https://www.thoughtworks.com">
<img class="pdf-tw-logo" src="/images/tw-logo.png" alt="logo" />
<img class="pdf-tw-logo" src="images/tw-logo.png" alt="logo" />
</a>
</div>
</div>
Expand Down Expand Up @@ -83,7 +83,7 @@ <h1 class="pdf-title"></h1>
<div class="pdf-powered-by-text">
<span>Powered by</span>
<a href="https://www.thoughtworks.com">
<img class="pdf-tw-logo" src="/images/tw-logo.png" alt="logo" />
<img class="pdf-tw-logo" src="images/tw-logo.png" alt="logo" />
</a>
<div class="pdf-footer-title">Build your own Radar</div>
<a class="radar-link" id="generated-radar-link" href="https://radar.thoughtworks.com">
Expand Down

0 comments on commit cfc74a7

Please sign in to comment.