Skip to content

Commit

Permalink
fix base url paths
Browse files Browse the repository at this point in the history
  • Loading branch information
whicks1 committed Nov 6, 2023
1 parent 2725036 commit ca53264
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</a>
<ul class="dropdown-menu dropdown-menu-end">
{% for project in site.projects %}
<li><a class="dropdown-item" href="{{ project.url }}">{{ project.title }}</a></li>
<li><a class="dropdown-item" href="{{ project.url | prepend: site.baseurl }}">{{ project.title }}</a></li>
{% endfor %}
</ul>
</li>
Expand Down
2 changes: 1 addition & 1 deletion _layouts/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h1 class="mt-4 border-bottom border-light pb-2">{{ page.title }}</h1>
</div>
<div class="list-group list-group-flush">
{% for project in site.projects %}
<a class="list-group-item" href="{{ project.url }}">{{ project.title }}</a>
<a class="list-group-item" href="{{ project.url | prepend: site.baseurl }}">{{ project.title }}</a>
{% endfor %}
</div>
</div>
Expand Down

0 comments on commit ca53264

Please sign in to comment.