You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
821 B
24 lines
821 B
|
|
<html> |
|
<head> |
|
<meta charset="UTF-8" /> |
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/> |
|
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet" /> |
|
<link href="./styles/chat.css" rel="stylesheet" /> |
|
<link href="./styles/standalone-chat.css" rel="stylesheet" /> |
|
|
|
<script src="//unpkg.com/showdown/dist/showdown.min.js"></script> |
|
</head> |
|
|
|
<body> |
|
<div id="messages-only"></div> |
|
|
|
<script type="module"> |
|
import { render, html } from 'https://unpkg.com/htm/preact/standalone.module.js'; |
|
import StandaloneChat from './js/app-standalone-chat.js'; |
|
render( |
|
html`<${StandaloneChat} messagesOnly />`, document.getElementById("messages-only") |
|
); |
|
</script> |
|
</body> |
|
</html>
|
|
|