flask website for la petite ecole
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.
 
 
 
 

43 lines
1.1 KiB

<!DOCTYPE html>
<head>
{% block 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">
{% endblock head %}
</head>
<body>
{% block intro %}
{% endblock intro %}
{% block nav %}
{% endblock nav %}
{% 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 %}
<div id="soc_med">
<ul>
<li>
<a href="https://www.facebook.com/LAile-1396378200629387" target="_blank"><img src="{{ url_for('static', filename='css/facebook.svg')}}"></a>
</li>
<li>
<a href="https://www.instagram.com/asblaile/" target="_blank"><img src="{{ url_for('static', filename='css/instagram.svg')}}"></a>
</li>
</ul>
</div>
</body>
</html>