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.
45 lines
1.3 KiB
45 lines
1.3 KiB
<!DOCTYPE html> |
|
<head> |
|
{% block head %} |
|
|
|
{% endblock head %} |
|
|
|
<title>{% block title %}{% endblock title %}</title> |
|
<!-- <meta charset="utf-8"> --> |
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
|
<meta name="viewport" content="width=device-width,initial-scale=1.0"> |
|
<link href="{{ url_for('static', filename='css/fonts/script.css')}}" rel="stylesheet" media="screen"> |
|
<link href="{{ url_for('static', filename='css/fonts/courierprime.css')}}" rel="stylesheet" media="screen"> |
|
<link href="{{ url_for('static', filename='css/style.css')}}" rel="stylesheet" media="screen"> |
|
|
|
</head> |
|
|
|
<body> |
|
{% block intro %} |
|
{% endblock intro %} |
|
|
|
{% block nav %} |
|
{% endblock nav %} |
|
|
|
<div class="picto_sun"> |
|
<img src="{{ url_for('static', filename='img/sun.svg')}}" alt="" class="yellow_filter" /> |
|
</div> |
|
|
|
<div class="picto_shape"> |
|
<img src="./static/img/shape/{{picto}}" alt="" /> |
|
</div> |
|
|
|
{% block content %} |
|
{% endblock content %} |
|
|
|
|
|
<script src="{{ url_for('static', filename='js/jquery.min.js')}}"></script> |
|
<script src="{{ url_for('static', filename='js/script.js')}}"></script> |
|
{% block script %} |
|
{% endblock script %} |
|
</body> |
|
|
|
|
|
</html> |
|
|
|
|
|
|