Guest User

Untitled

a guest
May 7th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. for post in posts
  2.     $('#posts').append "
  3.         <section class='post #{color[i]}' data-post='#{post.id}'>
  4.             <div class='date' data-date='24/12/2011'>
  5.                 <span class='number'>#{post.createdAt.getDate()}</span>
  6.                 <span class='month'>#{month_abbr[post.createdAt.getMonth()]}</span>
  7.             </div>
  8.             <header>
  9.                 <h1><a href='#'>#{post.title}</a></h1>
  10.             </header>
  11.             <article>
  12.                 #{post.content}
  13.             </article>
  14.         </section>
  15.     "
Add Comment
Please, Sign In to add comment