You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.3 KiB

4 years ago
  1. {% extends "bootstrap/base.html" %}
  2. {% block title %}$REPO_NAME{% endblock %}
  3. {% block metas %}
  4. {{super()}}
  5. <meta name="apple-mobile-web-app-capable" content="yes">
  6. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
  8. <link rel="manifest" crossorigin="use-credentials" href="./manifest.json">
  9. <link rel="apple-touch-icon" href="{{url_for('.static', filename='app-icon.png')}}">
  10. {% endblock %}
  11. {% block styles %}
  12. {{super()}}
  13. <link rel="stylesheet" href="{{url_for('.static', filename='style.css')}}">
  14. {% endblock %}
  15. {% block navbar %}
  16. {% include "fragments/navbar.j2" %}
  17. {% endblock %}
  18. {% block content %}
  19. <div class="wrapper">
  20. <!-- Sidebar -->
  21. <div id="sidebar">
  22. {% include "fragments/sidebar.j2" %}
  23. </div>
  24. <!-- Page Content -->
  25. <div id="content">
  26. <form>
  27. <div class="row justify-content-center">
  28. <div class="col-lg-12">
  29. This is your home page, have fun!
  30. </div>
  31. </div>
  32. </form>
  33. </div>
  34. </div>
  35. {% endblock %}
  36. {% block scripts %}
  37. {{ super() }}
  38. <script>
  39. // Enable bootstrap tooltips
  40. $(function () {
  41. $('[data-toggle="tooltip"]').tooltip()
  42. });
  43. </script>
  44. {% endblock %}