Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
<%= 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' %>