Created
March 2, 2016 19:31
-
-
Save subhaze/e0186d8f161c9f42aecc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<body class="container"> | |
<h1>Some Title</h1> | |
<% if (names.length) { %> | |
<ul> | |
<% names.forEach(function(name){ %> | |
<li><%= name %></li> | |
<% }) %> | |
</ul> | |
<% } %> | |
<p>foo bar</p> | |
</body> | |
</html> |
Author
subhaze
commented
Mar 2, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment