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.

33 lines
980 B

  1. {% extends "bootstrap/base.html" %}
  2. {% block title %}Read TI Later{% endblock %}
  3. {% block styles %}
  4. {{super()}}
  5. <link rel="stylesheet" href="{{url_for('.static', filename='style.css')}}">
  6. {% endblock %}
  7. {% block navbar %}
  8. {% include "fragments/navbar.j2" %}
  9. {% endblock %}
  10. {% block content %}
  11. <div class="wrapper">
  12. <!-- Sidebar -->
  13. <div id="sidebar">
  14. {% include "fragments/sidebar.j2" %}
  15. </div>
  16. <!-- Page Content -->
  17. <div id="content">
  18. <div>
  19. <p style="text-align: center;">Would you rather save on the go? Try our bookmarklet!</p>
  20. <code>
  21. 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);})();
  22. </code>
  23. </div>
  24. </div>
  25. </div>
  26. {% endblock %}
  27. {% block scripts %}
  28. {{ super() }}
  29. {% endblock %}