Repository URL to install this package:
Version:
0.5.1 ▾
|
<%= render 'event', :event => @event %>
<p>
Location: <%= link_to_unless @event.venue_url.blank?,
@event.location, @event.venue_url %>
</p>
<%= link_to "Add to calendar", event_path(@event, :format => :ics), :class => "button small radius" %>
<%=raw @event.description %>
<% if @event.next || @event.prev %>
<nav id="next-prev">
<% if @event.next %>
<%= link_to @event.next.title, event_path(@event.next), :class => 'next' %>
<% end %>
<% if @event.prev %>
<%= link_to @event.prev.title, event_path(@event.prev), :class => 'prev' %>
<% end %>
</nav>
<% end %>
<%= render 'events/sidebar' %>