Skip to content

Instantly share code, notes, and snippets.

@loudwinston
Created June 21, 2015 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save loudwinston/b61d9b351a484f382147 to your computer and use it in GitHub Desktop.
Save loudwinston/b61d9b351a484f382147 to your computer and use it in GitHub Desktop.
Travel Template
<!DOCTYPE html>
<html>
<head>
<title>Travel Blog!</title>
<link rel="stylesheet" href="/stylesheets/mystyle.css">
</head>
<body>
<% for (var i = 0; i < locations.length; i++) {
var location = locations[i];
%>
<div>
<h2><%=location.name%></h2>
<h3><%=location.country%></h3>
<img src="/images/<%=location.image_name%>">
<p><%=location.description%></p>
<p>Rating: <%=location.rating%> out of 5</p>
</div>
<%
}
%>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment