Is it possible to exclude the current post from a posts list based on the code below?
{{ $section := .CurrentSection }}
{{ $Posts := $section.RegularPagesRecursive }}
{{ $related := shuffle $Posts | first 12 }}
{{ range $related }}
<li><a href="{{ .Permalink }}">{{ Title }}</a></li>
{{ end }}