DockOfOurOwn/index.mustache

34 lines
933 B
Plaintext

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title id="streamName">{{name}}</title>
<meta name="author" content="Your Name">
<meta name="description" content="{{description}}">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="">
<link rel="icon" type="image/x-icon" href=""/>
</head>
<body>
<header>
</header>
<main>
<h2 id="streamTitle">{{streamTitle}}</h2>
<p>Stream online? <span id="streamOnline">{{online}}</span></p>
<hr>
<p>Current Viewers: <span id="currentViewers">{{viewerCount}}</span></p>
<p>Session Max Viewers: <span id="sessionMaxViewerCount">{{sessionMaxViewerCount}}</span></p>
<p>Overall Max Viewers: <span id="overallMaxViewerCount">{{overallMaxViewerCount}}</span></p>
<hr>
<p>Current tags: <span id="tags">{{tags}}</span></p>
</main>
<footer>
</footer>
</body>
<script src="/static/script.js"></script>
</html>