lpdumas / gw2cartographers

A Guild Wars 2 map project
gw2cartographers.com
19 stars 8 forks source link

Migrate all js generated HTML to an underscore template. #18

Closed lpdumas closed 12 years ago

lpdumas commented 12 years ago

I'm on it

lpdumas commented 12 years ago

Templates info:

<div data-markerCat="<%= markerCat %>" id="menu-marker">
  <span class="menu-title"><%= markerCat %> markers</span>
  <ul>
    <% _.each(markerType, function(i) { %>
    <li data-type="<%= i.type %>" data-cat="<%= markerCat %>">
        <img src="<%= i.url %>" alt="<%= i.type %>" />
    </li> 
    <% }); %>
  </ul>
</div>