midr @ da992500f806bb87b06559d920ee12b7680955ee

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