Skip to content

Instantly share code, notes, and snippets.

@levkk
Last active August 25, 2023 19:45
Show Gist options
  • Select an option

  • Save levkk/2bd07d878ffcc599e62733282ac55bcc to your computer and use it in GitHub Desktop.

Select an option

Save levkk/2bd07d878ffcc599e62733282ac55bcc to your computer and use it in GitHub Desktop.
Components (HTML)
<!-- 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