peer-calls/views/call.html
Jerko Steiner 2d14e5fd33 Replace pug with doT
Pug contains a lot of unnecessary dependencies leading to code bloat,
which results in increased docker package size, and thus docker image
size). express-dot-engine is much simpler and performs better.
2019-11-19 12:21:19 -03:00

16 lines
397 B
HTML

---
layout: _layout.html
title: Peer Call
---
[[##body:
<body class="call">
<input type="hidden" id="baseUrl" value="[[=model.baseUrl]]">
<input type="hidden" id="callId" value="[[!model.callId]]">
<input type="hidden" id="iceServers" value='[[!JSON.stringify(model.iceServers)]]'>
<div id="container"></div>
<script src="[[=model.baseUrl + '/static/index.js']]"></script>
</body>
#]]