making all path relative

This commit is contained in:
Set Hallstrom 2019-12-16 12:12:57 +01:00
parent 1d1c40fd3b
commit f39725b142
24 changed files with 85 additions and 61 deletions

View file

@ -1,6 +1,7 @@
<!DOCTYPE html>
<html>
<head>
{% include relBase.html %}
{% include metahead.html %}
{% include matomo.html %}
</head>
@ -11,8 +12,8 @@
<div class="fitter">
{% for page in site.categories.highlights offset: 0 limit: 15 %}
<div class="records">
<a href="{{ site.baseurl }}{{ page.url }}">
<img class="recordthumbs" src="{{ site.baseurl }}{{ page.coverart.art }}" title="{{ page.title }}" alt="{{ page.title }}" />
<a href="{{ relBase }}{{ page.url }}">
<img class="recordthumbs" src="{{ relBase }}{{ page.coverart.art }}" title="{{ page.title }}" alt="{{ page.title }}" />
</a>
</div>
{% endfor %}