How do I display the previous 3 posts for each post?

Previous 3 by weight (ascending) then date (descending) ?

{{ range first 3 (where .CurrentSection.Pages "Date" "lt" .Date) }}
  <a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
{{ end }}
4 Likes