Front end of the Slack clone application.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3. <head>
  4. <script data-ionic="inject">
  5. (function(w){var i=w.Ionic=w.Ionic||{};i.version='3.9.2';i.angular='5.2.11';i.staticDir='build/';})(window);
  6. </script>
  7. <meta charset="UTF-8">
  8. <title>Ionic App</title>
  9. <meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
  10. <meta name="format-detection" content="telephone=no">
  11. <meta name="msapplication-tap-highlight" content="no">
  12. <link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico">
  13. <link rel="manifest" href="manifest.json">
  14. <meta name="theme-color" content="#4e8ef7">
  15. <!-- add to homescreen for ios -->
  16. <meta name="apple-mobile-web-app-capable" content="yes">
  17. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  18. <!-- cordova.js required for cordova apps (remove if not needed) -->
  19. <script src="cordova.js"></script>
  20. <!-- un-comment this code to enable service worker
  21. <script>
  22. if ('serviceWorker' in navigator) {
  23. navigator.serviceWorker.register('service-worker.js')
  24. .then(() => console.log('service worker installed'))
  25. .catch(err => console.error('Error', err));
  26. }
  27. </script>-->
  28. <link href="build/main.css" rel="stylesheet">
  29. </head>
  30. <body>
  31. <!-- Ionic's root component and where the app will load -->
  32. <ion-app></ion-app>
  33. <!-- The polyfills js is generated during the build process -->
  34. <script src="build/polyfills.js"></script>
  35. <!-- The vendor js is generated during the build process
  36. It contains all of the dependencies in node_modules -->
  37. <script src="build/vendor.js"></script>
  38. <!-- The main bundle js is generated during the build process -->
  39. <script src="build/main.js"></script>
  40. </body>
  41. </html>