Skip to content

Commit

Permalink
Fix wrong PDF paths
Browse files Browse the repository at this point in the history
  • Loading branch information
kadykov committed Oct 28, 2024
1 parent 536d750 commit 8150416
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
</head>
<body>
<div style="height: 100vh;">
<object data="/kadykov-cv.pdf" type="application/pdf" width="100%" height="100%">
<p>Unable to display PDF file. <a href="/kadykov-cv.pdf">Download</a> instead.</p>
<object data="./kadykov-cv.pdf" type="application/pdf" width="100%" height="100%">
<p>Unable to display PDF file. <a href="./kadykov-cv.pdf">Download</a> instead.</p>
</object>
</div>
<div style="height: 100vh;">
<object data="/kadykov-letter.pdf" type="application/pdf" width="100%" height="100%">
<p>Unable to display PDF file.<a href="/kadykov-letter.pdf">Download</a> a PDF version.</p>
<object data="./kadykov-letter.pdf" type="application/pdf" width="100%" height="100%">
<p>Unable to display PDF file.<a href="./kadykov-letter.pdf">Download</a> a PDF version.</p>
</object>
</div>
</body>
Expand Down

0 comments on commit 8150416

Please sign in to comment.