Is there a more efficient way than the way I am doing below?
{{ if eq .Language.Lang "en" }}
{{- with site.GetPage "blog/foo/_index.md"}}
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{- end }}
{{ else }}
{{- with site.GetPage "blog/foo/_index.fr.md"}}
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{- end }}
{{- end }}
I need to replicate this in different partials and templates for different sections, but the above code seems too verbose…