{{ .Title }}
Perhaps the best way to navigate the content is by the language taught by each lesson:
-
{{- range $key, $taxonomy := index .Site.Taxonomies "target-languages" }}
- {{ ($.Site.GetPage (printf "/target-languages/%s/" $key)).Title }}{{ with (len $taxonomy) }} ({{ . }} {{ if eq . 1 }}page{{ else }}pages{{ end }}){{ end }} {{- end }}
There are a few other sections on the site as well:
-
{{- range .Pages }}
{{- if not (eq .Params.type "wiki") }}
- {{ .LinkTitle }}{{ if .IsNode }} ({{ len .Pages }} {{ if eq (len .Pages) 1 }}page{{ else }}pages{{ end }}){{ end }} {{- end }} {{- end }}
Finally, there is a wiki for each language:
-
{{- range .Pages }}
{{- if eq .Params.type "wiki" }}
- {{ .LinkTitle }}{{ if .IsNode }} ({{ len .Pages }} {{ if eq (len .Pages) 1 }}page{{ else }}pages{{ end }}){{ end }} {{- end }} {{- end }}