Prevent current post from appearing in a list

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 }}

Front matter cascade to the rescue.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.