Fix: wrong relative urls
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Dorian Zedler 2022-08-07 13:08:13 +02:00
parent cfd0385be5
commit ee56ab3d5c
Signed by: dorian
GPG key ID: 989DE36109AFA354
3 changed files with 4 additions and 4 deletions

View file

@ -53,10 +53,10 @@
{{ if or (.Params.links.googleplay) (.Params.links.appstore) (.Params.links.opensource) }}
<h3>Downloads</h3>
{{ with .Params.links.googleplay }}
<a href="{{ . }}" target="blank"><img alt="Get it on Google Play" src="/assets/GooglePlay.png"></a><br>
<a href="{{ . }}" target="blank"><img alt="Get it on Google Play" src="{{site.BaseURL}}/assets/GooglePlay.png"></a><br>
{{ end }}
{{ with .Params.links.appstore }}
<a href="{{ . }}" target="blank"><img alt="Download on the App Store" src="/assets/AppStore.png"></a>
<a href="{{ . }}" target="blank"><img alt="Download on the App Store" src="{{site.BaseURL}}/assets/AppStore.png"></a>
{{ end }}
{{ with .Params.links.opensource }}

View file

@ -37,6 +37,6 @@
</section>
</div>
{{ block "footer" . }} {{- partial "footer.html" . -}} {{ end }}
{{- partial "footer.html" . -}}
</body>
</html>

View file

@ -1,3 +1,3 @@
<a href="{{ site.BaseURL }}" class="navbar-brand mr-10">
<img src="{{ site.BaseURL }}images/logo/IconBig.png" alt="{{ .Site.Title }}" />
<img src="{{ site.BaseURL }}/images/logo/IconBig.png" alt="{{ .Site.Title }}" />
</a>