28 lines
799 B
Plaintext
28 lines
799 B
Plaintext
|
extends default
|
||
|
|
||
|
block content
|
||
|
table#desc
|
||
|
thead
|
||
|
tr
|
||
|
th Name
|
||
|
th Path
|
||
|
th Size
|
||
|
tbody
|
||
|
each n in drives
|
||
|
tr
|
||
|
td= n.device
|
||
|
td= n.path
|
||
|
td= n.size
|
||
|
.main.container
|
||
|
.row
|
||
|
.col-md-6.col-md-offset-3
|
||
|
h1.display-4.m-b-2 Node-DiskPlayer - Record
|
||
|
form(method='POST' action='/record')
|
||
|
div.form-group
|
||
|
label(for='path') Path:
|
||
|
input#path.form-control(type='text', placeholder='/dev/sda' name='path')
|
||
|
div.form-group
|
||
|
label(for='url') Spotify Url:
|
||
|
input#url.form-control(type='text', placeholder='https://open.spotify.com/track/1zv2bVCoZL8RyjBhna1NdV' name='url')
|
||
|
button.btn.btn-primary(type='submit') Record
|