21 lines
745 B
Plaintext
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')
|