I am using a (primary) partial:
<%= render partial: 'shared/page/head' %>
Which makes use of other (secondary) partials:
<head>
<%= render partial: 'shared/page/head/title' %>
<%= render partial: 'shared/page/head/meta' %>
...
<%= render partial: 'shared/page/head/fonts' %>
...
<%= render partial: 'shared/page/head/google_analytics' %>
</head>
As you can see I'm currently using paths relative to app/view
for these secondary partials even though they are sitting in the same directory as the primary partial.
I've tried using relative paths:
<%= render partial: 'title' %>
Or
<%= render partial: './title' %>
But neither work.
Is there a way to have a partial resolve partials it uses using a relative path?