orbit-basic/app/views/mobile/index.mobile.erb

26 lines
921 B
Plaintext
Raw Normal View History

2012-12-19 19:21:50 +00:00
<div class="slideshow">
2013-10-18 07:25:19 +00:00
<% @ad_banner.ad_images.can_display.shuffle.each do |image| %>
<div class="slidebanner"><%= image_tag image.file.url, :class => 'slideImg' %></div>
2012-12-19 19:21:50 +00:00
<% end %>
</div>
<div class="newlist clear">
<% @bulletins.each do |bulletin| %>
<div class="newitem">
<div class="newpic">
<%= image_tag bulletin.image.url %>
</div>
<h3 class="newstitle">
2013-01-16 00:14:42 +00:00
<%= link_to bulletin.title, mobile_announcement_content_path(:app => params[:app], :id => bulletin) %>
2012-12-19 19:21:50 +00:00
</h3>
<p class="newsDate"><%= display_date(bulletin.postdate) %></p>
<div class="newsummary"><%= bulletin.subtitle %></div>
</div>
<% end %>
</div>
<script type='text/javascript'>
var $effect = "<%= @ad_banner.ad_fx.nil? ? 'fade': @ad_banner.ad_fx %>"
var $timeout = "<%= @ad_banner.transition_msec %>"
2013-01-31 10:56:45 +00:00
var $info = "<%= t('mobile.location_description').html_safe %>"
2012-12-19 19:21:50 +00:00
</script>