-
Notifications
You must be signed in to change notification settings - Fork 405
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(engine-twig-php): update @basalt/twig-renderer to v3.0.1 using T…
…wig v3.7.1 (#1499) * feat(engine-twig-php): update @basalt/twig-renderer to v3.0.1 using Twig v3.7.1 Closes: #1496 * feat(edition-twig): alter-twig.php using Twig v3 namespaces Refs: #1496 * fix(edition-twig): deprecation message "hiding by underscore prefix"
- Loading branch information
Showing
9 changed files
with
19 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/edition-twig/source/_patterns/atoms/buttons/button-dark-demo.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{% include '@atoms/buttons/_button.twig' with { | ||
{% include '@atoms/buttons/button.twig' with { | ||
text: 'Click Me', | ||
dark: true, | ||
} only %} |
2 changes: 1 addition & 1 deletion
2
packages/edition-twig/source/_patterns/atoms/buttons/button-simple-demo.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{% include '@atoms/buttons/_button.twig' with { | ||
{% include '@atoms/buttons/button.twig' with { | ||
text: 'Click Me', | ||
} only %} |
3 changes: 3 additions & 0 deletions
3
packages/edition-twig/source/_patterns/atoms/buttons/button.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
hidden: true | ||
--- |
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
packages/edition-twig/source/_patterns/atoms/text/headings.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<h1>Heading Level 1</h1> | ||
<h2>Heading Level 2</h2> | ||
<h3>Heading Level 3</h3> | ||
<h3>Heading Level 3</h3> | ||
<h4>Heading Level 4</h4> | ||
<h5>Heading Level 5</h5> | ||
<h5>Heading Level 5</h5> | ||
<h6>Heading Level 6</h6> |
2 changes: 1 addition & 1 deletion
2
packages/edition-twig/source/_patterns/molecules/card/card.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<div class="card"> | ||
<h2>Card Title here</h2> | ||
{% include '@atoms/buttons/_button.twig' with { | ||
{% include '@atoms/buttons/button.twig' with { | ||
text: 'some text from card' | ||
} only %} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters