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
Im trying to create one partial into another, and i want to put panini's yml custom data in the head of the file.
Here's an example
partials/home_cards_es.html
--- btn: COMPRAR --- {{> home_cards}}
partials/home_cards_en.html
--- btn: BUY --- {{> home_cards}}
Is there a way to do this?
Thanksssss
The text was updated successfully, but these errors were encountered:
You can pass argument to custom partial:
page:
--- layout: transactional-email subject: Transactional email prototype linkTitle: CLICK ME PLEASE --- {{#> link href="http://page.com" title=linkTitle }} My label {{/link}}
and partial:
<a href="{{href}}" class="link" title="{{title}}">{{> @partial-block }}</a>
Sorry, something went wrong.
No branches or pull requests
Im trying to create one partial into another, and i want to put panini's yml custom data in the head of the file.
Here's an example
partials/home_cards_es.html
partials/home_cards_en.html
Is there a way to do this?
Thanksssss
The text was updated successfully, but these errors were encountered: