···1414 </nav>
1515 <div class="page">
1616 <div class="error-box">
1717- <h3>Could not extract recipe</h3>
1717+ <h3 id="error-title">Could not extract recipe</h3>
1818 <p>{{.Error}}</p>
1919 <p class="error-source">You can view the original page at <a href="{{.SourceURL}}" target="_blank" rel="noopener">{{with cleanSource .SourceURL}}{{.host}}{{if .path}}<span class="source-path">{{.path}}</span>{{end}}{{end}}</a></p>
2020 </div>
···2323 <span>made by <a href="https://dunkirk.sh" target="_blank" rel="noopener">Kieran Klukas</a></span>
2424 <a href="https://tangled.org/dunkirk.sh/pare/commit/{{.GitHash}}" target="_blank" rel="noopener" class="commit-link">{{.GitHash}}</a>
2525 </footer>
2626+<script>
2727+const errorPhrases = [
2828+ "We burned the water",
2929+ "The kitchen is on fire",
3030+ "Someone forgot the baking soda",
3131+ "The recipe vanished into thin air",
3232+ "We dropped the souffle",
3333+ "The dog ate the recipe",
3434+ "Oops, all garnish",
3535+ "Lost the recipe in the couch cushions",
3636+ "Recipe 404: flavor not found",
3737+ "The recipe is in another castle",
3838+];
3939+const title = document.getElementById('error-title');
4040+title.textContent = errorPhrases[Math.floor(Math.random() * errorPhrases.length)];
4141+</script>
2642</body>
2743</html>
2844{{end}}