home.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {% extends "base.html" %}
  2. <!-- Render landing page under tabs -->
  3. {% block tabs %}
  4. {{ super() }}
  5. <!-- Additional styles for landing page -->
  6. <style>
  7. /* Application header should be static for the landing page */
  8. .md-header {
  9. position: initial;
  10. }
  11. /* Remove spacing, as we cannot hide it completely */
  12. .md-main__inner {
  13. margin: 0;
  14. }
  15. /* Hide main content for now */
  16. .md-content {
  17. display: none;
  18. }
  19. /* Hide table of contents */
  20. @media screen and (min-width: 60em) {
  21. .md-sidebar--secondary {
  22. display: none;
  23. }
  24. }
  25. /* Hide navigation */
  26. @media screen and (min-width: 76.25em) {
  27. .md-sidebar--primary {
  28. display: none;
  29. }
  30. }
  31. </style>
  32. <!-- landing page for landing page -->
  33. <section class="tx-container">
  34. <div class="md-grid md-typeset">
  35. <div class="tx-landing">
  36. <!-- landing image -->
  37. <div class="tx-landing__image">
  38. <script src="./mkdocs/js/lottie-player.js"></script>
  39. <lottie-player id="lottieAnimation" background="transparent"
  40. style="max-width: 100%; height: auto;"
  41. speed="1" loop autoplay>
  42. </lottie-player>
  43. <script>
  44. let animation = document.getElementById("lottieAnimation");
  45. animation.load("mkdocs/assets/animations/ml.json");
  46. </script>
  47. </div>
  48. <!-- landing content -->
  49. <div class="tx-landing__content">
  50. <h1>{{page.title}}</h1>
  51. <p>FATE Flow Base on:
  52. <ul>
  53. <li>Shared-State Scheduling Architecture</li>
  54. <li>Secure Multi-Party Communication</li>
  55. </ul>
  56. </p>
  57. <p>Providing production-level service capabilities:
  58. <ul>
  59. <li>Data Access</li>
  60. <li>Component Registry</li>
  61. <li>Federated Job&Task Scheduling</li>
  62. <li>Multi-Party Resource Coordination</li>
  63. <li>Data Flow Tracking</li>
  64. <li>Real-Time Monitoring</li>
  65. <li>Federated Model Registry</li>
  66. <li>Multi-Party Cooperation Authority Management</li>
  67. <li>CLI, REST API, Python API</li>
  68. </ul>
  69. </p>
  70. <a href="/Docs" title="Docs" class="md-button"> Learn More</a>
  71. <a href="https://github.com/FederatedAI/FATE-Flow" title="GitHub" class="md-button">GitHub</a>
  72. </div>
  73. </div>
  74. </div>
  75. </section>
  76. {% endblock %}
  77. <!-- Content -->
  78. {% block content %}{% endblock %}
  79. <!-- Application footer -->
  80. {% block footer %}{% endblock %}