I am using the code below to toggle the languages. How do I add an active class to the currently selected language?
{{ with first 2 .AllTranslations }}
<p>Translations:
{{ range . }}
<a href="{{ .RelPermalink }}">{{ .Language.LanguageName }}</a>
{{ end }}
</p>
{{ end }}