Last active
November 27, 2017 17:39
-
-
Save lewisnyman/96c3fdbcb5d0fcc1c2ae to your computer and use it in GitHub Desktop.
Patternab twig example patterns
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
<div class="box {{class}}"> | |
<h2 class="box__title">{{title}}</h2> | |
<div class="box__content"> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> | |
</div> | |
<div class="box__actions"> | |
{% include "atoms-button" with | |
{ | |
"element": "a", | |
"text": "Find out more", | |
"cta": true | |
} | |
%} | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment