{% 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">
|
|
<form>
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-12">
|
|
{% for article in articles|reverse %}
|
|
{% include "fragments/cell.j2" %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% include "fragments/add_modal.j2" %}
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
{{ super() }}
|
|
{# <script src="{{url_for('.static', filename='inobounce.js')}}"></script> #}
|
|
<script type="text/javascript" src="{{url_for('.static', filename='add_modal.js')}}"></script>
|
|
<script>
|
|
$(function () {
|
|
$('[data-toggle="tooltip"]').tooltip()
|
|
})
|
|
</script>
|
|
{% endblock %}
|