Add slashes to home pic URLs

master
Will Faught 3 years ago
parent 5af8822c7c
commit 70ebacf21d

@ -13,7 +13,7 @@
{{ end }}
<div class="row py-3">
<div class="col">
<div class="rounded-4" style="background-image: url('{{ .Site.BaseURL }}cover.jpg'); background-position: center; background-size: cover; height: 20rem; width: 100%"></div>
<div class="rounded-4" style="background-image: url('{{ .Site.BaseURL }}/cover.jpg'); background-position: center; background-size: cover; height: 20rem; width: 100%"></div>
</div>
</div>
<div class="d-flex justify-content-center py-3 row">
@ -24,7 +24,7 @@
<p class="lead">{{ .Params.blurb | markdownify }}</p>
</div>
<div class="col-12 col-md-6 text-center">
<img alt="Avatar" class="rounded-4" src="{{ .Site.BaseURL }}avatar.jpg" style="max-height: 20rem; max-width: 100%">
<img alt="Avatar" class="rounded-4" src="{{ .Site.BaseURL }}/avatar.jpg" style="max-height: 20rem; max-width: 100%">
</div>
</div>
</div>

Loading…
Cancel
Save