Current section
Files
Jump to
Current section
Files
priv/web/templates/404.html.mustache
{{> layouts/header.html }}
<div class="p-6 bg-white rounded-md shadow-xl border-l-8 border-yellow-400">
<h1 class="text-2xl mb-4">404 Not Found</h1>
<div class="grid grid-flow-row sm:grid-cols-2 gap-2 w-max">
<div class="sm:justify-self-end">Method</div>
<div class="font-mono text-gray-500">{{req.method}}</div>
<div class="sm:justify-self-end">Path</div>
<div class="font-mono text-gray-500">{{req.path}}</div>
</div>
</div>
</div>
{{> layouts/footer.html }}