tenna
Version:
A node js application that lets you easily stream most videos from any PC/laptop in your home network, to other devices in the network with a browser.
32 lines (27 loc) • 790 B
text/jade
extends layout
block vars
- var title = "Tenna"
block content
h2 Videos
- if(videos.length) {
.row
each xar in videos
.tile.col-xs-12.col-sm-4.col-md-3
a.video-wrapper(href="/videos/##{xar.name}")
span.glyphicon.glyphicon-play.action-icon
div.tile-footer.overflow(title="#{xar.name}") #{xar.name}
- } else {
a(href="/setup")
h1 Add videos here
- }
- if(processing && processing.length) {
h1 Encoding
.row
each vid in processing
.tile.col-xs-12.col-sm-4.col-md-3(data-vidname= "#{vid.name}")
.video-wrapper
span.glyphicon.glyphicon-random.action-icon
div.tile-footer(title="#{vid.name}") #{vid.name}
- }
include blocks/nav
block footer