Sign in
apache
/
iggy
/
refs/heads/manylinux-python
/
.
/
web
/
src
/
routes
/
+error.svelte
blob: acd1f9b2160a1134a290f6dcc9a62e80c2dc31e4 [
file
]
<script>
import
{
page
}
from
'$app/state'
;
</script>
{#if page.error && page.error.message === 'Not Found'}
Not found
{:else}
Internal Error
{/if}