We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow the specification of multiple partial paths. i.e.,
"paths": { "partials": [ "./workspace/partials", "../../frontend-system" ] }
The above modification will allow referencing a folder outside the /workspace/ location.
/workspace/
This could be then used in the Dust templates like so:
{>"../../frontend-system/gallery"/}
Or...
{>"workspace/frontend-system/gallery"/}
P.S. I imagine it would be a similar amount of work to extend this to all the paths options?
paths
The text was updated successfully, but these errors were encountered:
@abovebored this can be done, but prefix for the partials will be the last part of the path, e.g.
{>"partials/gallery"/} {>"frontend-system/gallery"/}
{>"partials/gallery"/}
{>"frontend-system/gallery"/}
Does that sound reasonable?
Sorry, something went wrong.
Yes, perfect @jimlambie
jimlambie
No branches or pull requests
Allow the specification of multiple partial paths. i.e.,
The above modification will allow referencing a folder outside the
/workspace/
location.This could be then used in the Dust templates like so:
{>"../../frontend-system/gallery"/}
Or...
{>"workspace/frontend-system/gallery"/}
P.S. I imagine it would be a similar amount of work to extend this to all the
paths
options?The text was updated successfully, but these errors were encountered: