landing_not_managed.html 817 B

12345678910111213141516171819202122232425262728293031323334
  1. {% extends "base.html" %}
  2. {% load static %}
  3. {% load projecttags %}
  4. {% load humanize %}
  5. {% block title %} Welcome to Toaster {% endblock %}
  6. {% block pagecontent %}
  7. <div class="container">
  8. <div class="row">
  9. <!-- Empty - no build module -->
  10. <div class="page-header top-air">
  11. <h1>
  12. This page only works with Toaster in 'Build' mode
  13. </h1>
  14. </div>
  15. <div class="alert alert-info lead">
  16. <p">
  17. The 'Build' mode allows you to configure and run your Yocto Project builds from Toaster.
  18. <ul>
  19. <li><a href="https://www.yoctoproject.org/docs/latest/toaster-manual/toaster-manual.html#intro-modes">
  20. Read about the 'Build' mode
  21. </a></li>
  22. <li><a href="/">
  23. View your builds
  24. </a></li>
  25. </ul>
  26. </p>
  27. </div>
  28. </div>
  29. {% endblock %}