peer-calls/views/call.pug
Jerko Steiner 17bea91c1d Move src/{views,res} to root
To make it available after ts server files are compiled into lib folder
2019-11-13 22:27:34 -03:00

21 lines
745 B
Plaintext

doctype html
html
head
title Peer Call
meta(charset="utf-8")
meta(name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no")
meta(name="mobile-web-app-capable" content="yes")
meta(name="apple-mobile-web-app-capable" content="yes")
link(rel="apple-touch-icon" href=baseUrl + "/res/icon.png")
link(rel="icon" sizes="256x256" href=baseUrl + "/res/icon.png")
link(rel="stylesheet" type="text/css" href=baseUrl + "/static/style.css")
body.call
input#baseUrl(type="hidden" value=baseUrl)
input#callId(type="hidden" value=callId)
input#iceServers(type="hidden" value=JSON.stringify(iceServers))
div#container
script(src=baseUrl + '/static/index.js')