Skip to content

Commit

Permalink
Remove leading slash for image paths (#203)
Browse files Browse the repository at this point in the history
* removing leading forward slash to make site deployed to sub paths AND root paths work

* update example yaml comments paths to be consistent with changes to image file path handling
  • Loading branch information
unstableunicorn authored May 1, 2024
1 parent aa66f2e commit 100f20a
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions exampleSite/hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ params:
url: /
button: true
sidebar:
# Logo (from /images/logos/___.svg)
# Logo (from static/images/logos/___.svg)
logo: fresh-square
sections:
- title: User
Expand Down Expand Up @@ -138,7 +138,7 @@ params:
features:
- title: Powerful and unified interface
text: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ornare magna eros, eu pellentesque tortor vestibulum ut. Maecenas non massa sem. Etiam finibus odio quis feugiat facilisis.
# Icon (from /images/illustrations/icons/___.svg)
# Icon (from static/images/illustrations/icons/___.svg)
icon: laptop-globe
- title: Cross-device synchronisation
text: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ornare magna eros, eu pellentesque tortor vestibulum ut. Maecenas non massa sem. Etiam finibus odio quis feugiat facilisis.
Expand Down Expand Up @@ -175,7 +175,7 @@ params:
# action: https://formspree.io/f/<form_id>
# method: POST
footer:
# Logo (from /images/logos/___)
# Logo (from static/images/logos/___)
logo: fresh-white-alt.svg
# Social Media Title
socialmediatitle: Follow Us
Expand Down
4 changes: 2 additions & 2 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div class="columns">
<div class="column">
<div class="footer-logo">
<img src="{{ printf "/images/logos/%s" $logo | relURL }}">
<img src="{{ printf "images/logos/%s" $logo | relURL }}">
</div>
</div>
{{- range $quickLinks }}
Expand Down Expand Up @@ -46,7 +46,7 @@ <h3>{{ $socialMediaTitle }}</h3>

{{- if $bulmaLogo }}
<a href="https://bulma.io" target="_blank">
<img src="{{ "/images/logos/made-with-bulma.png" | relURL }}" alt="Made with Bulma" width="128" height="24">
<img src="{{ "images/logos/made-with-bulma.png" | relURL }}" alt="Made with Bulma" width="128" height="24">
</a>
{{- end }}
</div>
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/hero-body.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h2 class="subtitle is-5 is-muted">
</div>
<div class="column is-5 is-offset-1">
<figure class="image is-4by3">
<img src="{{ printf "/images/%s" $image | relURL }}" alt="Description">
<img src="{{ printf "images/%s" $image | relURL }}" alt="Description">
</figure>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/hero-footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{{- range $clientLogos }}
<li>
<a {{ if .url }} href="{{ .url }}" {{ end }}>
<img class="partner-logo" src="{{ printf "/images/logos/clients/%s.svg" .logo | relURL }}">
<img class="partner-logo" src="{{ printf "images/logos/clients/%s.svg" .logo | relURL }}">
</a>
</li>
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/navbar-clone.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div class="navbar-brand">
{{- if $navbarLogo}}
<a class="navbar-item" href="{{ $navbarLogo.link }}">
<img src="{{ printf "/images/%s" $navbarLogo.image | relURL }}" alt="" width="{{ $navbarLogoWidth }}" height="{{ $navbarLogoHeight }}">
<img src="{{ printf "images/%s" $navbarLogo.image | relURL }}" alt="" width="{{ $navbarLogoWidth }}" height="{{ $navbarLogoHeight }}">
</a>
{{- end}}

Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div class="navbar-brand">
{{- if $navbarLogo}}
<a class="navbar-item" href="{{ $navbarLogo.link }}">
<img src="{{ printf "/images/%s" $navbarLogo.image | relURL }}" alt="" width="{{ $navbarLogoWidth }}" height="{{ $navbarLogoHeight }}">
<img src="{{ printf "images/%s" $navbarLogo.image | relURL }}" alt="" width="{{ $navbarLogoWidth }}" height="{{ $navbarLogoHeight }}">
</a>
{{- end}}

Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/section1.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h3 class="subtitle is-5 is-muted">{{ $subtitle }}</h3>
<h4>{{ .title }}</h4>
</div>
<div class="card-icon">
<img src="{{ printf "/images/illustrations/icons/%s.svg" .icon | relURL }}">
<img src="{{ printf "images/illustrations/icons/%s.svg" .icon | relURL }}">
</div>
<div class="card-text">
<p>{{ .text }}</p>
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/section2.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h3 class="subtitle is-5 is-muted">{{ $subtitle }}</h3>
<article class="media icon-box">
<figure class="media-left">
<p class="image">
<img src="{{ printf "/images/illustrations/icons/%s.svg" .icon | relURL }}">
<img src="{{ printf "images/illustrations/icons/%s.svg" .icon | relURL }}">
</p>
</figure>
<div class="media-content mt-50">
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/section3.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div class="columns">
<div class="column is-10 is-offset-1">
<div class="has-text-centered">
<img class="pushed-image" src="{{ printf "/images/%s" $image | relURL }}">
<img class="pushed-image" src="{{ printf "images/%s" $image | relURL }}">
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/section4.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h3 class="subtitle is-5 light-text">{{ . }}</h3>
{{ .quote }}
</blockquote>
<div class="author">
<img src="{{ printf "/images/illustrations/faces/%s.png" (string .img) | relURL }}" alt=""/>
<img src="{{ printf "images/illustrations/faces/%s.png" (string .img) | relURL }}" alt=""/>
<h5>{{ .name }}</h5>
<span>{{ .job }}</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{{- $sections := index $sidebar "sections" }}
<div class="sidebar">
<div class="sidebar-header">
<img src="{{ printf "/images/logos/%s.svg" $logo | relURL }}">
<img src="{{ printf "images/logos/%s.svg" $logo | relURL }}">
<a class="sidebar-close" href="javascript:void(0);">
<i data-feather="x"></i>
</a>
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/single/sidebar.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{- $logo := .Params.sidebarlogo }}
<div class="sidebar">
<div class="sidebar-header">
<img src="{{ printf "/images/logos/%s.svg" $logo | relURL }}">
<img src="{{ printf "images/logos/%s.svg" $logo | relURL }}">
<a class="sidebar-close" href="javascript:void(0);">
<i data-feather="x"></i>
</a>
Expand Down

0 comments on commit 100f20a

Please sign in to comment.