Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. h.content_tag :div, class: 'row hooka-list-row-wrapper' do
  2. h.content_tag :div, class: 'col-lg-4 col-md-4 col-xs-12' do
  3. h.content_tag :div, class: 'hooka-list-box' do
  4. h.image_tag self.picture_link, class: 'img-responsive'
  5. h.content_tag :div, class: 'hooka-list-box-info' do
  6. h.concat "#{I18n.t('others.title')}: #{self.name}"
  7. # h.tag :br
  8. h.content_tag :small do
  9. h.concat I18n.t('video_advert_index.added')+' '
  10. h.concat self.created_at
  11. # h.tag :br
  12. h.concat 'Liczba vidoe:'
  13. # h.content_tag :br
  14. if self.description.present?
  15. h.link_to 'Opis:', '#', data: {toggle: 'tooltip'}, title: self.description
  16. h.truncate(self.description, :length => 100, :separator => '.')
  17. end
  18. end
  19. end
  20. end
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement