소스 검색

fix: SVG header logo missing size (Lighthouse fix)

Part 2/2.

See unresolved Hugo issue: gohugoio/hugo#3700

Workaround is to manually define SVG size:
site.Params.header.image.width
site.Params.header.image.height
George Cushen 3 년 전
부모
커밋
d054640701
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      wowchemy/layouts/partials/navbar.html

+ 3 - 1
wowchemy/layouts/partials/navbar.html

@@ -41,7 +41,9 @@
     <div class="navbar-brand-mobile-wrapper d-inline-flex d-lg-none">
       <a class="navbar-brand" href="{{ "/" | relLangURL }}">
       {{- if $has_logo -}}
-        <img src="{{ $logo.RelPermalink }}" alt="{{ site.Title }}">
+        <img src="{{ $logo.RelPermalink }}" alt="{{ site.Title }}"
+        {{with site.Params.header.image.width}}width="{{.}}"{{end}}
+        {{with site.Params.header.image.height}}height="{{.}}"{{end}}>
       {{- else -}}
         {{- site.Title -}}
       {{- end -}}