* add npm dependencies used in this theme * implement helper to configure JS and ESBuild * migrate jquery popper.js bootstrap fontawesome to js bundle * refactor main.js into smaller pieces, and moved navbar.js to assets * remove list.js. It adjusts post card height to be the same, but is actually not needed. * refactored notes.js, search.js, single.js into application.js * move ityped to js asset, implement experiences horizontal vertical line in css * align recent post height via css * migrated home.js and refactored into various sections * migrated darkMode feature to js bundle * moved mermaid feature to js bundle * migrate syntax highlight to js bundle * migrate katex ( js portion ) to js bundle * migrate pdf-js to js bundle by delegating to cdn * set explicit comparisions for feature envvars so js can properly optimize * removed goat-counter * more fixes for broken achievements and small bugs * more bug fixes * allow configuration of hightlight.js, fix video-player shortcode * remove jquery all together * add null handling and fix merge conflicts Co-authored-by: Aaron Qian <aaron@yeet.io>
63 lines
2.1 KiB
HTML
63 lines
2.1 KiB
HTML
{{/* by default, don't use any logo */}}
|
|
{{ $mainLogo := "" }}
|
|
{{ $invertedLogo := "" }}
|
|
|
|
{{/* if custom logo has been provided, 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 */}}
|
|
{{ if $mainLogo }}
|
|
{{ $mainLogo = resources.Get $mainLogo}}
|
|
{{ if and $mainLogo (ne $mainLogo.MediaType.SubType "svg") }}
|
|
{{ $mainLogo = $mainLogo.Resize "42x" }}
|
|
{{ end }}
|
|
{{ $mainLogo = $mainLogo.RelPermalink}}
|
|
{{ end }}
|
|
|
|
{{ if $invertedLogo }}
|
|
{{ $invertedLogo = resources.Get $invertedLogo}}
|
|
{{ if and $invertedLogo (ne $invertedLogo.MediaType.SubType "svg")}}
|
|
{{ $invertedLogo = $invertedLogo.Resize "42x" }}
|
|
{{ end }}
|
|
{{ $invertedLogo = $invertedLogo.RelPermalink}}
|
|
{{ end }}
|
|
|
|
<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">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="{{ site.BaseURL | relLangURL }}">
|
|
{{ if $mainLogo }}
|
|
<img src="{{ $mainLogo }}" alt="Logo">
|
|
{{ end }}
|
|
{{- site.Title -}}
|
|
</a>
|
|
<button class="navbar-toggler navbar-light" id="toc-toggler" type="button">
|
|
<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 }}
|
|
{{ if site.Params.features.darkMode.enable }}
|
|
{{ partial "navigators/theme-selector.html" . }}
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<!-- Store the logo information in a hidden img for the JS -->
|
|
{{ if $mainLogo }}
|
|
<img src="{{ $mainLogo }}" class="d-none" id="main-logo" alt="Logo">
|
|
{{ end }}
|
|
{{ if $invertedLogo }}
|
|
<img src="{{ $invertedLogo }}" class="d-none" id="inverted-logo" alt="Inverted Logo">
|
|
{{ end }}
|
|
</nav>
|