Merge pull request #18 from CSIRT-MU/language-selector

allow language selector to be disabled
This commit is contained in:
Somrat 2019-10-21 15:45:53 +06:00 committed by GitHub
commit c2341e8e9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View file

@ -8,6 +8,7 @@ secondaryColor = "#f9f9f9"
textColor = "#636363"
textColorDark = "#242738"
whiteColor = "#ffffff"
disableLanguageSwitchingButton = false
[Languages]

View file

@ -43,6 +43,7 @@
{{ end }}
</ul>
<!-- Language List -->
{{- if and .Site.IsMultiLingual (not .Site.Params.DisableLanguageSwitchingButton)}}
<select id="select-language" onchange="location = this.value;">
{{ $siteLanguages := .Site.Languages}}
{{ $pageLang := .Page.Lang}}
@ -61,5 +62,6 @@
{{ end }}
{{ end }}
</select>
{{ end }}
</div>
</nav>