base.html 877 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. {% load static %}
  3. <html>
  4. <head>
  5. <title>Toaster Simple Explorer</title>
  6. <script src="{% static 'js/jquery-2.0.3.js' %}">
  7. </script>
  8. <script src="{% static 'js/bootstrap.js' %}">
  9. </script>
  10. <link href="{% static 'css/bootstrap.css' %}" rel="stylesheet" type="text/css">
  11. </head>
  12. <body style="height: 100%">
  13. <div style="width:100%; height: 100%; position:absolute">
  14. <div style="width: 100%; height: 3em" class="nav">
  15. <ul class="nav nav-tabs">
  16. <li><a href="{% url all-builds %}">All Builds</a></li>
  17. <li><a href="{% url all-layers %}">All Layers</a></li>
  18. </ul>
  19. </div>
  20. <div style="overflow-y:scroll; width: 100%; position: absolute; top: 3em; bottom:70px ">
  21. {% block pagecontent %}
  22. {% endblock %}
  23. </div>
  24. <div class="navbar" style="position: absolute; bottom: 0; width:100%"><br/>About Toaster | Yocto Project </div>
  25. </div>
  26. </body>
  27. </html>