diff --git a/layouts/partials/post.html b/layouts/partials/post.html
index 876cb38..cf981af 100644
--- a/layouts/partials/post.html
+++ b/layouts/partials/post.html
@@ -18,10 +18,12 @@
{{- if .linkSeries -}}
{{- $term := index (.page.GetTerms "series") 0 -}}
{{- with $term -}}
+ {{- if (not ($term.Param "donotunique")) -}}
{{- partial "icon.html" "corner-down-right" -}}
{{- i18n "latestInSeries" }} {{ $term.Title }}
{{- end -}}
+ {{- end -}}
{{- end }}
diff --git a/layouts/partials/uniquebyseries.html b/layouts/partials/uniquebyseries.html
index 107b037..4b53b96 100644
--- a/layouts/partials/uniquebyseries.html
+++ b/layouts/partials/uniquebyseries.html
@@ -3,7 +3,7 @@
{{- $tmpScratch := newScratch -}}
{{- range $post := (where (where site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") -}}
{{- $term := index ($post.GetTerms "series") 0 -}}
-{{- if $term -}}
+{{- if (and $term (not ($term.Param "donotunique"))) -}}
{{- if not ($tmpScratch.Get $term.Permalink) -}}
{{- $tmpScratch.Set $term.Permalink true -}}
{{- $scratch.Add "pages" $post -}}