Created
October 25, 2013 12:53
-
-
Save did/7154216 to your computer and use it in GitHub Desktop.
Slim / Liquid
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
require 'slim' | |
template = %{ | |
doctype html | |
head | |
body | |
{% for product in products %} | |
{{ product.name }} | |
{% endfor %} | |
} | |
template = Slim::Template.new { template } # <- fails | |
template.render | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does the equivalent work with HAML?
How would this example look using HAML?