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.

63 lines
1.9 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. <div>
  27. Made with <svg
  28. width="24"
  29. height="24"
  30. fill="none"
  31. stroke="currentColor"
  32. stroke-width="2"
  33. stroke-linecap="round"
  34. stroke-linejoin="round"
  35. style="height: 1rem; vertical-align: middle; margin-bottom: 4px;">
  36. <use xlink:href="{{url_for('.static', filename='feather-sprite.svg')}}#heart"/></svg> and <svg
  37. width="24"
  38. height="24"
  39. fill="none"
  40. stroke="currentColor"
  41. stroke-width="2"
  42. stroke-linecap="round"
  43. stroke-linejoin="round"
  44. style="height: 1rem; vertical-align: middle; margin-bottom: 4px;">
  45. <use xlink:href="{{url_for('.static', filename='feather-sprite.svg')}}#coffee"/></svg> in Outer Austin!
  46. </div>
  47. </div>
  48. </div>
  49. {% endblock %}
  50. {% block scripts %}
  51. {{ super() }}
  52. <script>
  53. // Enable bootstrap tooltips
  54. $(function () {
  55. $('[data-toggle="tooltip"]').tooltip()
  56. });
  57. </script>
  58. {% endblock %}