|
|
- {% extends "bootstrap/base.html" %}
- {% block title %}Read TI Later{% endblock %}
-
- {% block metas %}
- {{super()}}
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
- <link rel="manifest" crossorigin="use-credentials" href="./manifest.json">
- <link rel="apple-touch-icon" href="{{url_for('.static', filename='read-it-later.png')}}">
- {% endblock %}
-
- {% block styles %}
- {{super()}}
- <link rel="stylesheet" href="{{url_for('.static', filename='style.css')}}">
- {% endblock %}
-
- {% block navbar %}
- {% include "fragments/navbar.j2" %}
- {% endblock %}
-
- {% block content %}
- <div class="wrapper">
- <!-- Sidebar -->
- <div id="sidebar">
- {% include "fragments/sidebar.j2" %}
- </div>
-
- <!-- Page Content -->
- <div id="content">
- <div>
- <p style="text-align: center;">Would you rather save on the go? Try our bookmarklet!</p>
- <code>
- 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);})();
- </code>
- </div>
- </div>
- </div>
- {% endblock %}
-
- {% block scripts %}
- {{ super() }}
- <script>
- $(function () {
- $('[data-toggle="tooltip"]').tooltip()
- })
- </script>
- {% endblock %}
|