Skip to content

Commit 529babd

Browse files
committed
Fix markdown links from README.md
1 parent 531e2fa commit 529babd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/layouts/Layout.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const { title } = Astro.props;
1414
<meta name="viewport" content="width=device-width" />
1515
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
1616
<title>{title}</title>
17+
<base href="https://github.com/pwndbg/pwndbg/blob/dev/" />
1718
</head>
1819
<body>
1920
<slot />

src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ const content = marked.parse(extractedMarkdown);
2222
<Layout title="Welcome to pwndbg.">
2323
<main>
2424
<h1>Make Debugging Great Again!</h1>
25-
<img id="logo" src="/logo.png" alt="Logo pwndbg" />
25+
<img id="logo" src="https://pwndbg.re/logo.png" alt="Logo pwndbg" />
2626

27-
<img src="/demo.gif" alt="Demo pwndbg" />
27+
<img src="https://pwndbg.re/demo.gif" alt="Demo pwndbg" />
2828
<article set:html={content} />
2929

3030
<p class="instructions">

0 commit comments

Comments
 (0)