72 lines
2.7 KiB
HTML
72 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html class="no-js" lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
|
|
<title>OpenBlogStock</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="{{ url_for('static', filename='bootstrap.min.css') }}" rel="stylesheet">
|
|
<!-- Bootstrap theme -->
|
|
<link href="{{ url_for('static', filename='bootstrap-theme.min.css') }}" rel="stylesheet">
|
|
|
|
<!-- Custom styles for this template -->
|
|
<link href="{{ url_for('static', filename='theme.css') }}" rel="stylesheet">
|
|
<!-- Mon CSS avec animations -->
|
|
<link href="{{ url_for('static', filename='up.css') }}" rel="stylesheet">
|
|
|
|
<script src="{{ url_for('static', filename='bootstrap.js') }}"></script>
|
|
|
|
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
|
|
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
|
|
<!--<script src="../../assets/js/ie-emulation-modes-warning.js"></script>-->
|
|
|
|
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
|
|
<!--<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>-->
|
|
|
|
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
|
|
<script type="text/javascript" src="{{ url_for('static', filename='divhider.js') }}"></script>
|
|
|
|
</head>
|
|
|
|
<body role="document">
|
|
{% block navbar %}{% endblock %}
|
|
|
|
<!--<div class="msginfo">
|
|
{# on affiche les messages d'erreur puis les messages de succes #}
|
|
{% for categorie in ['error', 'succes'] %}
|
|
{% with msgs = get_flashed_messages(category_filter=[categorie]) %}
|
|
{% if msgs %}
|
|
<div class="flashed {{ categorie }}">
|
|
{% for m in msgs %}
|
|
<p>{{ m|safe }}</p>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% endfor %}
|
|
</div>-->
|
|
|
|
<div class="container theme-showcase" role="main">
|
|
{% block main %}{% endblock %}
|
|
</div>
|
|
|
|
<!-- Bootstrap core JavaScript -->
|
|
<!--================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src="{{ url_for('static', filename='jquery.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='bootstrap.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='docs.min.js') }}"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|