comparison src/about.html.luan @ 25:13f4d2c8b8fe

fix about
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 05 Nov 2024 23:03:32 -0700
parents 5a56297713a3
children 5beadcd541aa
comparison
equal deleted inserted replaced
24:af41be2dcdec 25:13f4d2c8b8fe
12 %> 12 %>
13 <!doctype html> 13 <!doctype html>
14 <html> 14 <html>
15 <head> 15 <head>
16 <% head() %> 16 <% head() %>
17 <style>
18 h1 {
19 margin-bottom: 0;
20 }
21 h3 {
22 margin-top: 8px;
23 }
24 </style>
25 </head> 17 </head>
26 <body> 18 <body>
27 <% header() %> 19 <% header() %>
28 <div content> 20 <div content>
29 <h1>Web Chat</h1> 21 <h1>About Web Chat</h1>
30 <h3>A free web-based instant messaging service</h3> 22
31 <p><a href="https://hg.reactionary.software/repo/chat/">source code</a></p> 23 <p>This is a free web-based instant messaging service written for websites wanting to provide support through chat. The other existing solutions are overcomplicated enterprise services that are often expensive. All that is really needed is a simple general chat. Each user gets a URL and other people can chat with the user through that URL.</p>
24
25 <p>As a simple service, this doesn't implement features that can be handled elsewhere. In particular we don't provide:</p>
26 <ul>
27 <li>file transfer - Use email instead.</li>
28 <li>voice, video, and screen share - Use <a href="https://talky.io/">talky</a> instead. Just make a talky URL and then post it in our chat.</li>
29 </ul>
30
31 <p>This is an open <a href="https://hg.reactionary.software/repo/chat/">source</a> project.</p>
32 </div> 32 </div>
33 </body> 33 </body>
34 </html> 34 </html>
35 <% 35 <%
36 end 36 end