Videos
This commit is contained in:
@@ -22,7 +22,19 @@ module Adamantium
|
|||||||
end
|
end
|
||||||
|
|
||||||
def photos?
|
def photos?
|
||||||
photos.count > 0
|
__getobj__.photos.count { |p| !p["value"].end_with?("mp4") } > 0
|
||||||
|
end
|
||||||
|
|
||||||
|
def photos
|
||||||
|
__getobj__.photos.select { |p| !p["value"].end_with?("mp4") }
|
||||||
|
end
|
||||||
|
|
||||||
|
def videos?
|
||||||
|
__getobj__.photos.count { |p| p["value"].end_with?("mp4") } > 0
|
||||||
|
end
|
||||||
|
|
||||||
|
def videos
|
||||||
|
__getobj__.photos.select { |p| p["value"].end_with?("mp4") }
|
||||||
end
|
end
|
||||||
|
|
||||||
def prefix_emoji
|
def prefix_emoji
|
||||||
|
@@ -5,6 +5,10 @@ article class="h-entry"
|
|||||||
= post.display_title
|
= post.display_title
|
||||||
|
|
||||||
article class="mb-12 prose dark:prose-invert max-w-prose mx-auto text-gray-800 dark:text-gray-200 prose-a:text-blue-600 prose-a:no-underline hover:prose-a:underline prose-img:rounded"
|
article class="mb-12 prose dark:prose-invert max-w-prose mx-auto text-gray-800 dark:text-gray-200 prose-a:text-blue-600 prose-a:no-underline hover:prose-a:underline prose-img:rounded"
|
||||||
|
- if post.videos?
|
||||||
|
- post.videos.each do |video|
|
||||||
|
video loop muted controls
|
||||||
|
source type="video/mp4" src=video["value"]
|
||||||
- if post.photos?
|
- if post.photos?
|
||||||
- post.photos.each do |photo|
|
- post.photos.each do |photo|
|
||||||
figure
|
figure
|
||||||
|
Reference in New Issue
Block a user