making all path relative
This commit is contained in:
parent
1d1c40fd3b
commit
f39725b142
24 changed files with 85 additions and 61 deletions
|
|
@ -9,6 +9,7 @@ poster_image: /assets/vid/discogs.jpg
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{% include relBase.html %}
|
||||
{% include metahead.html %}
|
||||
{% include matomo.html %}
|
||||
</head>
|
||||
|
|
@ -21,8 +22,8 @@ poster_image: /assets/vid/discogs.jpg
|
|||
{% assign sorted = site.albums | reverse %}
|
||||
{% for album in sorted %}
|
||||
<div class="records">
|
||||
<a href="{{ site.baseurl }}/albums/{{ album.slug }}/">
|
||||
<img class="recordthumbs" src="{{ site.baseurl }}{{ album.cover }}" title="{{ album.name }}" alt="{{ album.name }}" />
|
||||
<a href="{{ relBase }}/albums/{{ album.slug }}/">
|
||||
<img class="recordthumbs" src="{{ relBase }}{{ album.cover }}" title="{{ album.name }}" alt="{{ album.name }}" />
|
||||
</a>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue