17 lines
461 B
HTML
17 lines
461 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-us">
|
|
<head>
|
|
<title>Discussions | <%= process.env.SITE_NAME %></title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link
|
|
rel="shortcut icon"
|
|
href="<%=htmlWebpackPlugin.options.FAVICON_URL%>"
|
|
type="image/x-icon"
|
|
/>
|
|
</head>
|
|
<body class="vh-100 vw-100 h-100 m-0">
|
|
<div id="root" class="vh-100 vw-100 small"></div>
|
|
</body>
|
|
</html>
|