Add frontend tests and other stuff
[recipes.git] / backend / templates / base.html
index 9b7356d..6b8e1ad 100644 (file)
@@ -8,6 +8,14 @@
     </head>
 
     <body>
+        <script type="module">
+            import init from '/static/frontend.js';
+            async function run() {
+                await init();
+            }
+            run();
+        </script>
+
         {% block body_container %}{% endblock %}
         <div class="footer-container">gburri - 2022</div>
     </body>