Skip to content

Commit

Permalink
add backwards navigation links
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanThatOneKid committed Feb 23, 2024
1 parent a00c160 commit 25f5c7f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/projects/ssr.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ function ProjectPageComponent(props: { baseURL: string; project: Project }) {
<hr />

<ProjectMetadataTableComponent project={props.project} />
<footer>
<a href="../projects.html">↩ Projects</a>
</footer>
</main>
);
}
Expand Down Expand Up @@ -167,6 +170,9 @@ export function ProjectsPageComponent(props: { projects: Project[] }) {

<PageHeading title="projects" />
<ProjectsTableComponent projects={props.projects} />
<footer>
<a href="../index.html">↩ Docs</a>
</footer>
</main>
);
}
Expand Down
6 changes: 6 additions & 0 deletions lib/workshops/ssr.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ function WorkshopGroupsPageComponent(

<PageHeading title="workshops" />
<WorkshopGroupsTableComponent workshopGroups={props.workshopGroups} />
<footer>
<a href="../index.html">↩ Docs</a>
</footer>
</main>
);
}
Expand Down Expand Up @@ -108,6 +111,9 @@ function WorkshopGroupPageComponent(

<h1>{props.group.groupID}</h1>
<WorkshopGroupTableComponent workshops={props.group.workshops} />
<footer>
<a href="../workshops.html">↩ Workshops</a>
</footer>
</main>
);
}
Expand Down

0 comments on commit 25f5c7f

Please sign in to comment.