mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 15:23:50 +08:00
21 lines
728 B
Plaintext
21 lines
728 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta property="csrf" content="<%= csrfToken %>">
|
|
<link rel="stylesheet" type="text/css" href="/client/embed/stream/default.css">
|
|
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
<% if (locals.customCssUrl) { %>
|
|
<link href="<%= customCssUrl %>" rel="stylesheet" type="text/css">
|
|
<% } %>
|
|
<% if (data != null) { %>
|
|
<script id="data" type="application/json"><%- JSON.stringify(data) %></script>
|
|
<% } %>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="coralStream"></div>
|
|
<script src="/client/embed/stream/bundle.js"></script>
|
|
</body>
|
|
</html>
|