Last active
August 25, 2023 19:45
-
-
Save levkk/2bd07d878ffcc599e62733282ac55bcc to your computer and use it in GitHub Desktop.
Components (HTML)
This file contains hidden or 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
| <!-- parent.html --> | |
| <div class="component-class"> | |
| <% for item in list { %> | |
| <li><%= item %></li> | |
| <% } %> | |
| </div> | |
| <!-- parent.html --> | |
| <div class="components-class"> | |
| <% for item in list { %> | |
| <!-- This uses the Sailfish shorthand syntax <%+ | |
| which translates to item.render_once().unwrap() | |
| --> | |
| <%+ item %> | |
| <% } %> | |
| </div> | |
| <!-- child.html --> | |
| <li><%= value %></li> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment