+
{{ range .Paginator.Pages }}
- {{ partial "articles/article.html" . }}
+ {{ partial "papers/paper.html" . }}
{{ end }}
diff --git a/layouts/partials/articles/references.html b/layouts/partials/papers/references.html
similarity index 100%
rename from layouts/partials/articles/references.html
rename to layouts/partials/papers/references.html
diff --git a/layouts/partials/persons/articles.html b/layouts/partials/persons/papers.html
similarity index 74%
rename from layouts/partials/persons/articles.html
rename to layouts/partials/persons/papers.html
index 8f087b267..3df613acf 100644
--- a/layouts/partials/persons/articles.html
+++ b/layouts/partials/persons/papers.html
@@ -4,10 +4,10 @@
{{ i18n "persons.publications" }}
{{ i18n "persons.publications" }}
-
- {{ range first 3 .articles }}
+
+ {{ range first 3 .papers }}
- {{ partial "articles/article.html" . }}
+ {{ partial "papers/paper.html" . }}
{{ end }}
diff --git a/layouts/persons/single.html b/layouts/persons/single.html
index 3d522224c..e4d1a3be2 100644
--- a/layouts/persons/single.html
+++ b/layouts/persons/single.html
@@ -8,9 +8,9 @@
{{ if isset site.Taxonomies "administrators" -}}
{{ $programsForAdministrator = index site.Taxonomies.administrators $slug}}
{{- end }}
- {{- $articlesForResearcher := slice -}}
+ {{- $papersForResearcher := slice -}}
{{- if isset site.Taxonomies "researchers" -}}
- {{ $articlesForResearcher = index site.Taxonomies.researchers $slug}}
+ {{ $papersForResearcher = index site.Taxonomies.researchers $slug}}
{{ end }}
{{ $author := site.GetPage (printf "/authors/%s" $slug) }}
@@ -65,8 +65,8 @@
{{ partial "persons/posts.html" $author }}
{{ end }}
- {{ if $articlesForResearcher }}
- {{ partial "persons/articles.html" (dict "articles" $articlesForResearcher "slug" $slug) }}
+ {{ if $papersForResearcher }}
+ {{ partial "persons/papers.html" (dict "papers" $papersForResearcher "slug" $slug) }}
{{ end }}
diff --git a/layouts/researchers/term.html b/layouts/researchers/term.html
index 886c2012b..9f306a872 100644
--- a/layouts/researchers/term.html
+++ b/layouts/researchers/term.html
@@ -5,7 +5,7 @@
"context" .
) -}}
- {{ partial "articles/articles.html" . }}
+ {{ partial "papers/papers.html" . }}
{{ partial "commons/pagination.html" . }}
{{ end }}
diff --git a/layouts/volumes/term.html b/layouts/volumes/term.html
index d12157630..afa660e63 100644
--- a/layouts/volumes/term.html
+++ b/layouts/volumes/term.html
@@ -4,7 +4,7 @@