The ember Router provides for a nice branching structure of resources (in my case content for a resource nested inside a panel in a parent page), for example:
app
/ \
A B
/ / \
C D E
But my problem is that under two of my pages I link back to common content, for example both pages A & B have content C in a panel:
app
/ \
A B
\ / \
C D
"C" has to have two different routes as I want to be able to specify mysite.com/A/C as being different from mysite.com/B/C - both would have "C" in a panel but the surrounding page would be different. But the controller and to a large extent the template for C is the same in both places,.. so how would I go about having two different routes like this that share a common controller and template, (and for bonus points, how would I then inform the template what the parent was so I could make subtle adjustments based on that?)