This ensures that links work correctly in languages other than English. For example, clicking on the navbar "brand" link used to take you to the English home page even if you were browsing the site in another language. Now it takes you to the home page for that language.
27 lines
694 B
HTML
27 lines
694 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
|
|
|
{{ partial "nav.html" . }}
|
|
{{ partial "header.html" . }}
|
|
|
|
{{ $data := .Data }}
|
|
|
|
<div class="container" role="main">
|
|
<article class="post-preview">
|
|
<div class="list-group col-lg-4 col-lg-offset-4 col-md-6 col-md-offset-3">
|
|
{{ range $key, $value := .Data.Terms.ByCount }}
|
|
<a href="{{ $.Site.LanguagePrefix }}/{{ $data.Plural }}/{{ $value.Name | urlize }}" class="list-group-item">
|
|
{{ $value.Name }}<span class="badge">{{ $value.Count }}</span></a>
|
|
{{ end }}
|
|
</div>
|
|
</article>
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
</body>
|
|
</html>
|