mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
22 lines
657 B
Text
22 lines
657 B
Text
|
= render PhilomenaWeb.ImageView, "_image_meta.html", image: @image
|
||
|
= render PhilomenaWeb.ImageView, "_image_page.html", image: @image
|
||
|
|
||
|
.layout--narrow
|
||
|
.image-description
|
||
|
div
|
||
|
p
|
||
|
| Description:
|
||
|
.image-description__text
|
||
|
= @image.description
|
||
|
.js-tagsauce id="image_tags_and_source_#{@image.id}"
|
||
|
.tagsauce
|
||
|
.block
|
||
|
| Tags:
|
||
|
= render PhilomenaWeb.TagView, "_tag_list.html", tags: @image.tags
|
||
|
.block
|
||
|
.flex.flex--wrap#image-source
|
||
|
' Source:
|
||
|
= if !!@image.source_url and @image.source_url != "" do
|
||
|
a href=@image.source_url = @image.source_url
|
||
|
- else
|
||
|
em> not provided yet
|