~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to theme/default/libraries/calendar/tmpls/week-days.html

  • Committer: Dan Garner
  • Date: 2015-03-26 14:08:33 UTC
  • Revision ID: git-v1:70d14044444f8dc5d602b99890d59dea46d9470c
Moved web servable files to web folder

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<% _.each(events, function(event){ %>
2
 
<div class="cal-row-fluid">
3
 
        <div class="cal-cell<%= event.days%> cal-offset<%= event.start_day %> day-highlight dh-<%= event['class'] %>">
4
 
                <a href="<%= event.url ? event.url : 'javascript:void(0)' %>" data-event-id="<%= event.id %>" data-event-class="<%= event['class'] %>" class="cal-event-week event<%= event.id %>"><%= event.title %></a>
5
 
        </div>
6
 
</div>
7
 
<% }); %>