25 lines
No EOL
665 B
HTML
25 lines
No EOL
665 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Recettes de cuisine</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<script type="module">
|
|
import init from '/static/frontend.js';
|
|
async function run() {
|
|
await init();
|
|
}
|
|
run();
|
|
</script>
|
|
|
|
<div id="toast"></div>
|
|
|
|
{% block body_container %}{% endblock %}
|
|
|
|
<footer class="footer-container">gburri - 2022</footer>
|
|
</body>
|
|
</html> |