Created
October 28, 2009 07:22
-
-
Save juvenn/220325 to your computer and use it in GitHub Desktop.
mustache things
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
{{#posts}} | |
{{! this is post stuff}} | |
{{/posts}} |
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
class Blog | |
module Views | |
class Index < Mustache | |
def posts | |
@posts.map { | |
#... | |
} | |
end | |
end | |
end | |
end |
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
<h1>Posts tagged with {{tag}}</h1> | |
{{<index}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment