%
var _query = (typeof query !== 'undefined') ? query : null;
var _total = (typeof total !== 'undefined') ? total : courses.length;
%>
No courses found.
<% } else { %>
<% courses.forEach(function(course) {
var lastUpdated = new Date(course.last_updated).toLocaleDateString('en-US', { year: 'numeric', month: 'short', day: 'numeric' });
var layoutCount = course.layoutCount || 0;
%>
<%= course.name %>
<% if (layoutCount > 0) { %>
<%= layoutCount %> layout<%= layoutCount !== 1 ? 's' : '' %>
<% } %>
<%= course.city %> · <%= lastUpdated %>
▼
<% }); %>
<% } %>