refactor(archives): remove archive.categories i18n item (#108)

It's possible in the future to display another kind of taxonomy.

To translate that title, create _index.md under  content/categories, with the following content:

---
title: Category
---
This commit is contained in:
Jimmy Cai 2021-01-01 13:04:37 +01:00 committed by GitHub
parent 3572fff280
commit ae477ab224
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 5 additions and 28 deletions

View File

@ -16,10 +16,6 @@ list:
one: Subsection
other: Subsections
archives:
categories:
other: Categories
article:
relatedContents:
other: Related contents

View File

@ -4,10 +4,6 @@ toggleMenu:
darkMode:
other: ダークモード
archives:
categories:
other: 分類
article:
relatedContents:
other: 関連するコンテンツ

View File

@ -1,10 +1,6 @@
toggleMenu:
other: Alternar Menu
archives:
categories:
other: Categorias
article:
relatedContents:
other: Conteúdos Relacionados

View File

@ -20,10 +20,6 @@ list:
many: Подразделов
other: Подразделов
archives:
categories:
other: Категории
article:
relatedContents:
other: Также рекомендуем

View File

@ -16,10 +16,6 @@ list:
one: Alt bölüm
other: Alt bölümler
archives:
categories:
other: Kategoriler
article:
relatedContents:
other: Alakalı içerikler

View File

@ -4,10 +4,6 @@ toggleMenu:
darkMode:
other: 暗色模式
archives:
categories:
other: 分类
article:
relatedContents:
other: 相关文章

View File

@ -1,11 +1,12 @@
{{ define "body-class" }}template-archives{{ end }}
{{ define "main" }}
{{ $categories := ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
{{ if $categories }}
<h2 class="section-title">{{ T "archives.categories" }}</h2>
{{- $taxonomy := $.Site.GetPage "taxonomyTerm" "categories" -}}
{{- $terms := $taxonomy.Pages -}}
{{ if $terms }}
<h2 class="section-title">{{ $taxonomy.Title }}</h2>
<div class="subsection-list">
<div class="article-list--tile">
{{ range $categories }}
{{ range $terms }}
{{ partial "article-list/tile" (dict "context" . "size" "250x150" "Type" "taxonomy") }}
{{ end }}
</div>