mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 12:49:02 -05:00
23 lines
485 B
HTML
23 lines
485 B
HTML
{% load django_vite %}
|
|
|
|
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover">
|
|
<meta name="robots" content="noindex,nofollow"/>
|
|
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
|
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
|
|
{% vite_hmr_client %}
|
|
{% vite_asset 'src/apps/tandoor/main.ts' %}
|
|
<script src="{% url 'js_reverse' %}"></script>
|
|
|
|
</body>
|
|
</html>
|
|
|