You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
doctype html
html
head
title My Blog
body
each postId in posts
- var post =yieldgetPost(postId);
article
h1=post.name
p=post.body
For non-streaming:
getting list of options for a select:
mixin select(name, optionType)
- var options =yieldgetOptions(optionType)
select(name=name)each option in options
option(value=option.value)=option.name
form
+select('religion', 'religions')
I would like to add a more insightful example to the Readme so that people understand better how powerful then-jade is.
do you have ideas on what this example could be ? fetch an external ressource via request ? wait for something ?
thanks
The text was updated successfully, but these errors were encountered: