Skip to content

Commit

Permalink
updating paths to a more relative format
Browse files Browse the repository at this point in the history
  • Loading branch information
nheimlich committed Oct 12, 2024
1 parent b764817 commit 05a6009
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
14 changes: 7 additions & 7 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
permalink: "/"
---

<!doctype html>
<html lang="en">
<head>
Expand All @@ -11,17 +15,13 @@
<h1>nhlabs</h1>
<div class="container">
<div class="obj">
<a href="{{ '/index.html' | url }}"><button>home</button></a>
<a href="{{ '/' | url }}"><button>home</button></a>
</div>
<div class="obj">
<a href="{{ '/pages/projects/index.html' | url }}"
><button>projects</button></a
>
<a href="{{ '/projects/' | url }}"><button>projects</button></a>
</div>
<div class="obj">
<a href="{{ '/pages/tools/index.html' | url }}"
><button>tools</button></a
>
<a href="{{ '/tools/' | url }}"><button>tools</button></a>
</div>
</div>
</header>
Expand Down
14 changes: 7 additions & 7 deletions src/pages/projects.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
permalink: "/projects/"
---

<!doctype html>
<html lang="en">
<head>
Expand All @@ -11,17 +15,13 @@
<h1>nhlabs</h1>
<div class="container">
<div class="obj">
<a href="{{ '/index.html' | url }}"><button>home</button></a>
<a href="{{ '/' | url }}"><button>home</button></a>
</div>
<div class="obj">
<a href="{{ '/pages/projects/index.html' | url }}"
><button>projects</button></a
>
<a href="{{ '/projects/' | url }}"><button>projects</button></a>
</div>
<div class="obj">
<a href="{{ '/pages/tools/index.html' | url }}"
><button>tools</button></a
>
<a href="{{ '/tools/' | url }}"><button>tools</button></a>
</div>
</div>
</header>
Expand Down
14 changes: 7 additions & 7 deletions src/pages/tools.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
permalink: "/tools/"
---

<!doctype html>
<html lang="en">
<head>
Expand All @@ -11,17 +15,13 @@
<h1>nhlabs</h1>
<div class="container">
<div class="obj">
<a href="{{ '/index.html' | url }}"><button>home</button></a>
<a href="{{ '/' | url }}"><button>home</button></a>
</div>
<div class="obj">
<a href="{{ '/pages/projects/index.html' | url }}"
><button>projects</button></a
>
<a href="{{ '/projects/' | url }}"><button>projects</button></a>
</div>
<div class="obj">
<a href="{{ '/pages/tools/index.html' | url }}"
><button>tools</button></a
>
<a href="{{ '/tools/' | url }}"><button>tools</button></a>
</div>
</div>
</header>
Expand Down

0 comments on commit 05a6009

Please sign in to comment.