mirror of
https://github.com/microsoft/TypeScript-Node-Starter.git
synced 2025-11-10 00:37:34 +00:00
14 lines
324 B
Plaintext
14 lines
324 B
Plaintext
extends ../layout
|
|
|
|
block content
|
|
h2 JSON API Example - Reddit Feed
|
|
hr
|
|
|
|
for url in urls
|
|
if url.format == 'gif'
|
|
video(preload="auto", autoplay="autoplay", loop="loop", height="300px")
|
|
source(src=url.url, type="video/mp4")
|
|
else if url.format == 'image'
|
|
img(src=url.url, height="300px")
|
|
hr
|