Advertisement
Guest User

Untitled

a guest
Aug 28th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. data = {
  2. title: "Article title",
  3. body: "<b>This</b> is the content!!"
  4. };
  5.  
  6. var article = new Article(data);
  7.  
  8. article.save();
  9.  
  10. h2.articleTitle(style="font-style: italic;") #{article.title}
  11. p.articleBody(style="margin-top: 20px;") #{article.body}
  12.  
  13. h2.articleTitle(style="font-style: italic;") #{article.title}
  14. p.articleBody(style="margin-top: 20px;")
  15. - article.body
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement