* Update layout to use Hugo Image Processing. Created shortcode rimg that uses the srcset attribute to display responsive images. * Copy Static images to assets folder. * Add image processing to missing components + Update examples * Fix rendering in https://themes.gohugo.io/ Co-authored-by: Emruz Hossain <emruz@appscode.com>
51 lines
1.9 KiB
HTML
51 lines
1.9 KiB
HTML
{{/* default logos */}}
|
|
{{ $mainLogo := "/images/main-logo.png" }}
|
|
{{ $invertedLogo := "/images/inverted-logo.png" }}
|
|
|
|
{{/* if custom logo has been provided in the config file, then use them */}}
|
|
{{ if site.Params.logo.main }}
|
|
{{ $mainLogo = site.Params.logo.main }}
|
|
{{ end }}
|
|
|
|
{{ if site.Params.logo.inverted }}
|
|
{{ $invertedLogo = site.Params.logo.inverted }}
|
|
{{ end }}
|
|
|
|
{{/* resize the logos. don't resize svg because it is not supported */}}
|
|
{{ $mainLogo := resources.Get $mainLogo}}
|
|
{{ if and $mainLogo (ne $mainLogo.MediaType.SubType "svg") }}
|
|
{{ $mainLogo = $mainLogo.Resize "42x" }}
|
|
{{ end }}
|
|
{{ $mainLogo = $mainLogo.RelPermalink}}
|
|
|
|
{{ $invertedLogo := resources.Get $invertedLogo}}
|
|
{{ if and $invertedLogo (ne $invertedLogo.MediaType.SubType "svg") }}
|
|
{{ $invertedLogo = $invertedLogo.Resize "42x" }}
|
|
{{ end }}
|
|
{{ $invertedLogo = $invertedLogo.RelPermalink}}
|
|
|
|
<nav class="navbar navbar-expand-xl top-navbar final-navbar shadow">
|
|
<div class="container">
|
|
<button class="navbar-toggler navbar-light" id="sidebar-toggler" type="button" onclick="toggleSidebar()">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="{{ site.BaseURL | relLangURL }}">
|
|
<img src="{{ $mainLogo }}">
|
|
{{- site.Title -}}
|
|
</a>
|
|
<button class="navbar-toggler navbar-light" id="toc-toggler" type="button" onclick="toggleTOC()">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse lang-selector" id="top-nav-items">
|
|
<ul class="navbar-nav ml-auto">
|
|
{{ if .IsTranslated }}
|
|
{{ partial "navigators/lang-selector-2.html" . }}
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<!-- Store the logo information in a hidden img for the JS -->
|
|
<img src="{{ $mainLogo }}" class="d-none" id="main-logo">
|
|
<img src="{{ $invertedLogo }}" class="d-none" id="inverted-logo">
|
|
</nav>
|