index.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Examples Using STOMP Over WebSockets</title>
  6. <!--[if lt IE 9]>
  7. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  8. <![endif]-->
  9. <link href="css/bootstrap.min.css" rel="stylesheet">
  10. <link href="css/bootstrap.min.responsive.css" rel="stylesheet">
  11. <style type="text/css">
  12. body { padding-top: 80px; }
  13. </style>
  14. </head>
  15. <body>
  16. <div class="navbar navbar-fixed-top">
  17. <div class="navbar-inner">
  18. <div class="container">
  19. <a class="brand" href="#">Examples Using Stomp Over WebSocket</a>
  20. </div>
  21. </div>
  22. </div>
  23. <div class="container-fluid">
  24. <div class="row-fluid">
  25. <p>The <a href="/chat/">Chat example</a> shows how to use <code>stomp.js</code> to send and receive STOMP messages directly from the Web browser.</p>
  26. <p>The <a href="/webworker/">WebWorker example</a> uses a WebWorker instead to send and receive STOMP messages from the broker.</p>
  27. </div>
  28. </div>
  29. </body>
  30. </html>