34 lines
1005 B
HTML
34 lines
1005 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{% block title %}Infos vidéos cinematheque.tube{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.min.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/jquery.dataTables.min.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/custom.css') }}">
|
|
<script src="{{ url_for('static', filename='js/jquery-3.2.1.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/jquery.dataTables.min.js') }}"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container-full">
|
|
|
|
{% block container %}
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
|
|
<script>
|
|
$(document).ready(function(){
|
|
$('[data-toggle="tooltip"]').tooltip();
|
|
});
|
|
</script>
|
|
|
|
{% block scripts %}
|
|
{% endblock %}
|
|
|
|
</body>
|
|
</html>
|