Skip to content

Commit

Permalink
make URLs relative
Browse files Browse the repository at this point in the history
attempt to get the deployed urls correct
  • Loading branch information
pahjbo committed Mar 28, 2024
1 parent 45fc28f commit c70bfa7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ node_modules/
.hugo_build.lock
/.idea/
/.vscode/
/site/
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
site_name: Polaris
repo_url: https://github.com/orppst/guide
edit_uri: edit/main/docs/

nav:
- Home: index.md
Expand Down
6 changes: 3 additions & 3 deletions theme_overrides/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<style>
.greeting {
background-image: url(/assets/orp_background_image_small.png);
background-image: url(assets/orp_background_image_small.png);
height: 100%;

/* Center and scale the image nicely */
Expand Down Expand Up @@ -38,9 +38,9 @@

</style>
<div class="greeting">
<img class="polarislogo" src="/assets/polaris4.png">
<img class="polarislogo" src="assets/polaris4.png">
<div class="intromessage">
<a href="/prototype_information/">Read More</a>
<a href="prototype_information/">Read More</a>
</div>
<div class="intromessage"><a href="https://kilburn.jb.man.ac.uk/pst/gui/tool/">Demo</a></div>
</div>
Expand Down

0 comments on commit c70bfa7

Please sign in to comment.