1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-10 00:37:34 +00:00
Files
TypeScript-Node-Starter/views/api/index.pug
2018-01-03 17:25:31 -08:00

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