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.

47 lines
1.5 KiB

  1. {% extends "bootstrap/base.html" %}
  2. {% block title %}Read TI Later{% 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='read-it-later.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. <p style="text-align: center;">Would you rather save on the go? Try our bookmarklet!</p>
  28. <code>
  29. javascript:(function(){var%20url%20=%20location.href;var%20otherWindow=window.open('about:blank','_blank');otherWindow.opener=null;otherWindow.location='https://read.technicalincompetence.club/add?close=1&url='+encodeURIComponent(url);})();
  30. </code>
  31. </div>
  32. </div>
  33. </div>
  34. {% endblock %}
  35. {% block scripts %}
  36. {{ super() }}
  37. <script>
  38. $(function () {
  39. $('[data-toggle="tooltip"]').tooltip()
  40. })
  41. </script>
  42. {% endblock %}