Mercurial > prosody-modules
comparison mod_conversejs/template.html @ 3598:1921ae4449b8
mod_conversejs: Separate out templates into separate configurable files (breaks 0.9 compat)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 16 May 2019 08:45:41 +0200 |
parents | |
children | 42fa833169bb |
comparison
equal
deleted
inserted
replaced
3597:da7ec4ed6ddf | 3598:1921ae4449b8 |
---|---|
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <meta charset="utf-8"> | |
5 {header_style# | |
6 <link rel="stylesheet" type="text/css" media="screen" href="{item}"/>} | |
7 {header_scripts# | |
8 <script charset="utf-8" src="{item}"></script>} | |
9 <title>Prosody IM and Converse.js</title> | |
10 {header_tags# | |
11 {item!}} | |
12 </head> | |
13 <body> | |
14 <noscript> | |
15 <h1>Converse.js</h1> | |
16 <p>I'm sorry, but this XMPP client application won't work without JavaScript.</p> | |
17 <p>Perhaps you would like to try one of these clients:</p> | |
18 <dl> | |
19 <dt>Desktop</dt> | |
20 <dd><ul> | |
21 <li><a href="https://gajim.org/">Gajim</a></li> | |
22 <li><a href="https://poez.io/">Poezio</a></li> | |
23 <li><a href="https://swift.im/">Swift</a></li> | |
24 </ul></dd> | |
25 <dt>Mobile</dt> | |
26 <dd><ul> | |
27 <li><a href="https://github.com/siacs/Conversations">Conversations</a></li> | |
28 <li><a href="https://yaxim.org/">Yaxim</a></li> | |
29 </ul></dd> | |
30 </dl> | |
31 <p><a href="https://xmpp.org/software/clients.html">More clients...</a></p> | |
32 </noscript> | |
33 <script>{conversejs.startup.script!}</script> | |
34 </body> | |
35 </html> |