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.
16 lines
819 B
HTML
16 lines
819 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>[[= layout.title ]]</title>
|
|
<meta charset="utf-8"><meta>
|
|
<meta name="description" content="Make video calls to anybody in the world with a private connection. Share the conversation by sharing url."><meta>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"><meta>
|
|
<meta name="mobile-web-app-capable" content="yes"><meta>
|
|
<meta name="apple-mobile-web-app-capable" content="yes"><meta>
|
|
<link rel="apple-touch-icon" href="[[=model.baseUrl + 'res/icon.png']]"><link>
|
|
<link rel="icon" sizes="256x256" href="[[=model.baseUrl + 'res/icon.png']]"><link>
|
|
<link rel="stylesheet" type="text/css" href="[[=model.baseUrl + '/static/style.css']]"><link>
|
|
</head>
|
|
[[= layout.body]]
|
|
</html>
|