midr @ 04a10f2acd73d88f90433755bfbe667c5174acb5

 1{{ define "_footer" }}
 2    </main>
 3<script>
 4  function deleteEntry(id) {
 5    fetch("/entries/"+id, { method: 'DELETE' })
 6        .then((res)=>{
 7            window.location.href = '/'
 8        });
 9    }
10</script>
11  </body>
12</html>
13{{ end }}