<% var _query = (typeof query !== 'undefined') ? query : null; var _total = (typeof total !== 'undefined') ? total : courses.length; %>
Showing <%= courses.length %> of <%= _total %> View all →
<% if (courses.length === 0) { %>

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 %>
Tap to load layouts...
<% }); %>
<% } %>