Skip to content

Commit

Permalink
orbit: use asbolute static asset/image links
Browse files Browse the repository at this point in the history
We moved this content from ILKD_course_materials to
kdlp.underground.software so we no longer retrieve this from the docs
directory. Instead, we load it from our main website.

This also slightly simplifies deployment issues involving permissions
errors when requesting static content.

Signed-off-by: Joel Savitz <[email protected]>
  • Loading branch information
theyoyojo authored and charliemirabile committed Jan 21, 2025
1 parent b4bc19d commit 0b91c10
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions orbit/header.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="/assets/style.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png" />
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico" />
<link rel="manifest" href="/assets/site.webmanifest" />
<link rel="stylesheet" type="text/css" href="https://kdlp.underground.software/assets/style.css" />
<link rel="apple-touch-icon" sizes="180x180" href="https://kdlp.underground.software/assets/apple-touch-icon.png" />
<link rel="icon" type="image/x-icon" href="https://kdlp.underground.software/assets/favicon.ico" />
<link rel="manifest" href="https://kdlp.underground.software/assets/site.webmanifest" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>KDLP</title>
</head>
<body>
<div class="logo">
<a href="https://kdlp.underground.software">
<img src="/images/kdlp_logo.png" class="logo" alt="[KDLP] logo" />
<img src="https://kdlp.underground.software/images/kdlp_logo.png" class="logo" alt="[KDLP] logo" />
</a>
<h1 class="title" >Kernel Development Learning Pipeline</h1>
</div>
Expand Down

0 comments on commit 0b91c10

Please sign in to comment.