Calling partials with a specific parameter like this
{{> hbs/share/share page}}
does not inherit the parent context. I.e you cannot get data from the initial context.
However when calling it like this:
{{#page}}
{{> hbs/share/share}}
{{/page}}
Everything works fine.