Created
July 11, 2016 18:25
-
-
Save wellingtonpgp/1b55d2628d2c2fc043e8d6173aaccc38 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"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>handerlerbars</title> | |
| </head> | |
| <body> | |
| <h1> | |
| <%=title%> in EJS | |
| </h1> | |
| <ul> | |
| <% for(var i=0; i<list.length; i++){%> | |
| <li><%=list[i]%></li> | |
| <%}%> | |
| </ul> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment