diff --git a/layouts/_default/archives.html b/layouts/_default/archives.html
index 5d5243c..c61d631 100644
--- a/layouts/_default/archives.html
+++ b/layouts/_default/archives.html
@@ -8,7 +8,7 @@
{{ range $terms }}
- {{ partial "article-list/tile" (dict "context" . "size" "250x150" "Type" "taxonomy") }}
+ {{ partial "article-list/tile" (dict "context" . "size" (printf "250x150 %s" .Params.image_anchor) "Type" "taxonomy") }}
{{ end }}
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 9bc618d..20bd81b 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -60,7 +60,7 @@
{{ range . }}
- {{ partial "article-list/tile" (dict "context" . "size" "250x150" "Type" "section") }}
+ {{ partial "article-list/tile" (dict "context" . "size" (printf "250x150 %s" .Params.image_anchor) "Type" "section") }}
{{ end }}
@@ -82,4 +82,4 @@
{{ define "right-sidebar" }}
{{ partial "sidebar/right.html" (dict "Context" . "Scope" "homepage") }}
-{{ end }}
\ No newline at end of file
+{{ end }}
diff --git a/layouts/partials/article/components/related-contents.html b/layouts/partials/article/components/related-contents.html
index 29cfff6..a2d426c 100644
--- a/layouts/partials/article/components/related-contents.html
+++ b/layouts/partials/article/components/related-contents.html
@@ -5,9 +5,9 @@
{{ range . }}
- {{ partial "article-list/tile" (dict "context" . "size" "250x150" "Type" "articleList") }}
+ {{ partial "article-list/tile" (dict "context" . "size" (printf "250x150 %s" .Params.image_anchor) "Type" "articleList") }}
{{ end }}
-{{ end }}
\ No newline at end of file
+{{ end }}