* Fix the single template to use the authors avatar correctly * Replace absURL with relURL and .Site.X with site.X Co-authored-by: Emruz Hossain <emruz@appscode.com>
14 lines
No EOL
722 B
HTML
14 lines
No EOL
722 B
HTML
<li class="nav-item dropdown">
|
|
<a class="nav-link dropdown-toggle" href="#" id="languageSelector" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
<img class="flag" src="https://www.countryflags.io/{{ partial "helpers/country-code.html" .Language }}/flat/16.png">
|
|
{{ site.Language.LanguageName }}
|
|
</a>
|
|
<div class="dropdown-menu" aria-labelledby="languageSelector">
|
|
{{ range site.Home.AllTranslations }}
|
|
<a class="dropdown-item nav-link languages-item" href="{{ .Permalink }}">
|
|
<img class="flag" src="https://www.countryflags.io/{{ partial "helpers/country-code.html" .Language }}/flat/24.png">
|
|
{{ .Language.LanguageName }}
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
</li> |