When passing the current page context (within a dictionary) to a partial, which of the following naming conventions do you use, and why? Or do you use something different?
#1 {{ partial "my-partial.html" (dict "context" . "foo" "bar") }}
#2 {{ partial "my-partial.html" (dict "ctx" . "foo" "bar") }}
#3 {{ partial "my-partial.html" (dict "page" . "foo" "bar") }}
#4 {{ partial "my-partial.html" (dict "Page" . "foo" "bar") }}
This frequently cited article by @regis suggests #4.
There’s no right answer for this; I’m just looking for a best practice to clean up inconsistent usage across several projects.