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