1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Kfet-depreciated/app/templates/cuisine.html

21 lines
606 B
HTML
Raw Normal View History

2020-02-02 18:51:02 +01:00
{% extends "base.html" %}
2020-01-26 21:24:49 +01:00
2020-02-02 18:51:02 +01:00
{% block content %}
2020-02-02 22:23:53 +01:00
<div class="bg-contact2" id="main-container" style="background-image: url({{ url_for('static',filename='images/bg-01.jpg') }});">
2020-01-26 21:24:49 +01:00
<div id="middle-container">
<div id="encours">
2020-02-02 18:51:02 +01:00
2020-01-26 21:24:49 +01:00
</div>
<div id="attente">
2020-02-02 18:51:02 +01:00
</div>
<div id="realisee">
2020-01-26 21:24:49 +01:00
</div>
</div>
</div>
2020-02-02 18:51:02 +01:00
<script src="//cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js" integrity="sha256-yr4fRk/GU1ehYJPAs8P4JlTgu0Hdsp4ZKrx8bDEDC3I=" crossorigin="anonymous"></script>
<script src="{{ url_for('static', filename='js/kitchen.js') }}"></script>
{% endblock %}