Skip to content

Commit

Permalink
fix urls
Browse files Browse the repository at this point in the history
  • Loading branch information
hbrylkowski committed Aug 10, 2023
1 parent 3592611 commit 583d1a2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions _includes/sidebar/sponsors.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ <h2>
<ul>
<li>
<a href="https://www.ith.eu/" target="_blank">
<img src="/assets/images/sponsors/ith.png" alt="ITH logo" class="sponsors"/>
<img src="{{ '/assets/images/sponsors/ith.png' | relative_url }}" alt="ITH logo" class="sponsors"/>
</a>
</li>
<li>
<a href="https://www.kru.pl/" target="_blank">
<img src="/assets/images/sponsors/kru.png" alt="kru.pl logo" class="sponsors"/>
<img src="{{ '/assets/images/sponsors/kru.png' | relative_url}}" alt="kru.pl logo" class="sponsors"/>
</a>
</li>
</ul>
Expand All @@ -24,7 +24,7 @@ <h2>
<ul>
<li>
<a href="https://husarion.com/" target="_blank">
<img src="/assets/images/sponsors/husarion.png" alt="husarion logo" class="sponsors" />
<img src="{{ '/assets/images/sponsors/husarion.png' | relative_url }}" alt="husarion logo" class="sponsors" />
</a>
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion _includes/views/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

<div class="trigger">
{%- for path in page_paths -%}
<a class="page-link" href="{{ path.url }}">{{ path.title | upcase | escape }}</a>
<a class="page-link" href="{{ path.url | relative_url }}">{{ path.title | upcase | escape }}</a>
{%- endfor -%}

</div>
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:
jekyll:
image: jekyll/builder
command: jekyll build --future --trace
command: jekyll serve
volumes:
- .:/srv/jekyll:Z
ports:
Expand Down

0 comments on commit 583d1a2

Please sign in to comment.