Skip to content

Instantly share code, notes, and snippets.

@ForbesLindesay
Created May 21, 2012 00:37
Show Gist options
  • Save ForbesLindesay/2760057 to your computer and use it in GitHub Desktop.
Save ForbesLindesay/2760057 to your computer and use it in GitHub Desktop.
EJS - Blog Post
<ul>
<% for(var i = 0; i<items.length; i++){ %>
<li><%= items[i].name %></li>
<% } %>
</ul>
<% //Comments work as you would expect %>
<% /* This example would work great for showing a login/logout button */ %>
<button id="toggleLogin">
<% if(user.isLoggedIn) { %>
Log Out
<% } else { %>
Log In
<% } %>
</button>
<ul>
<% items.forEach(function(item){ %>
<li><%= item.name %></li>
<% } %>
</ul>
<%= text %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment