@heyloura Thanks for the steps for adding Backlinks. I added them to my site and they worked a treat. I can recommend a small change, as I was seeing links to newsletter pages were getting picked up in the backlinks. I made a slight change to filter out newsletter pages out. by adding a new if block around the append:
if not (strings.HasPrefix .RelPermalink "/newsletters")
See full example:
{{ $relpermalink := .RelPermalink }}
{{ $pages := slice }}
{{- range .Site.Pages -}}
{{- if strings.Contains .Content $relpermalink -}}
{{- if not (strings.HasPrefix .RelPermalink "/newsletters") -}}
{{ $pages = $pages | append . }}
{{- end -}}
{{- end -}}
{{- end -}}
Thanks again for the instructions.