mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-07-02 00:31:45 +00:00
22 lines
592 B
HTML
22 lines
592 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>SimpleX Channel Preview</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
html, body { height: 100%; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div
|
|
data-simplex-group-preview
|
|
data-relay-urls="https://relay1.example.com/preview"
|
|
data-public-group-id="YOUR_PUBLIC_GROUP_ID"
|
|
data-group-link="simplex:/g#YOUR_GROUP_LINK"
|
|
></div>
|
|
<script src="https://simplex.chat/js/channel-preview.js"></script>
|
|
</body>
|
|
</html>
|