Skip to content

Commit

Permalink
Fix markdown links from README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nikoshell committed Jan 22, 2025
1 parent 531e2fa commit 529babd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const { title } = Astro.props;
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<title>{title}</title>
<base href="https://github.com/pwndbg/pwndbg/blob/dev/" />
</head>
<body>
<slot />
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ const content = marked.parse(extractedMarkdown);
<Layout title="Welcome to pwndbg.">
<main>
<h1>Make Debugging Great Again!</h1>
<img id="logo" src="/logo.png" alt="Logo pwndbg" />
<img id="logo" src="https://pwndbg.re/logo.png" alt="Logo pwndbg" />

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

<p class="instructions">
Expand Down

0 comments on commit 529babd

Please sign in to comment.