mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
37 lines
No EOL
1.4 KiB
Text
37 lines
No EOL
1.4 KiB
Text
elixir:
|
|
size_class =
|
|
case @size do
|
|
:thumb ->
|
|
"media-box__content--large"
|
|
:medium ->
|
|
"media-box__content--featured"
|
|
_ ->
|
|
"media-box__content--small"
|
|
end
|
|
|
|
header_class =
|
|
case @size do
|
|
:thumb_small ->
|
|
"media-box__header--small"
|
|
_ ->
|
|
nil
|
|
end
|
|
|
|
.media-box data-image-id=@image.id
|
|
.media-box__header.media-box__header--link-row class=header_class data-image-id=@image.id
|
|
a.interaction--fave href="#" rel="nofollow" data-image-id=@image.id
|
|
span.fave-span title='Fave!'
|
|
i.fa.fa-star
|
|
span.favorites title='Favorites' data-image-id=@image.id = @image.faves_count
|
|
a.interaction--upvote href="#" rel="nofollow" data-image-id=@image.id
|
|
i.fa.fa-arrow-up title='Yay!'
|
|
span.score title='Score' data-image-id=@image.id = @image.score
|
|
a.interaction--downvote href="#" rel="nofollow" data-image-id=@image.id
|
|
i.fa.fa-arrow-down title='Neigh!'
|
|
a.interaction--comments href="/#{@image.id}#comments" title='Comments'
|
|
i.fa.fa-comments
|
|
span.comments_count data-image-id=@image.id = @image.comments_count
|
|
a.interaction--hide href="#" rel="nofollow" data-image-id=@image.id
|
|
i.fa.fa-eye-slash title='Hide'
|
|
.media-box__content.flex.flex--centered.flex--center-distributed class=size_class
|
|
= render PhilomenaWeb.ImageView, "_image_container.html", image: @image, size: @size |