midr @ d06f6e1398c5dedb3359ff929c5aaf7317c73ce1

 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 }}