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.

38 lines
1.1 KiB

4 years ago
  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. <nav class="navbar navbar-expand-lg sticky-top navbar-dark bg-dark">
  17. <div class="navbar-brand">Read TI Later</div>
  18. </nav>
  19. {% endblock %}
  20. {% block content %}
  21. <div class="wrapper">
  22. <div class="container" style="margin-top: 15px">
  23. <div class="jumbotron">
  24. <h1>Link saved!</h1>
  25. <p>If you can still see this, close it you dummy.</p>
  26. </div>
  27. </div>
  28. </div>
  29. {% endblock %}
  30. {% block scripts %}
  31. <script>
  32. window.close();
  33. </script>
  34. {% endblock %}