mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-11 19:04:30 +00:00
26 lines
608 B
HTML
26 lines
608 B
HTML
<svelte:head>
|
|
<title>Sapper project template</title>
|
|
</svelte:head>
|
|
|
|
<h1>Great success!</h1>
|
|
|
|
<a href='.'>home</a>
|
|
<a href='about'>about</a>
|
|
<a href='slow-preload'>slow preload</a>
|
|
<a href='redirect-from'>redirect</a>
|
|
<a href='blog/nope'>broken link</a>
|
|
<a href='blog/throw-an-error'>error link</a>
|
|
<a href='credentials?creds=include'>credentials</a>
|
|
<a rel=prefetch class='{page === "blog" ? "selected" : ""}' href='blog'>blog</a>
|
|
|
|
<div class='hydrate-test'></div>
|
|
|
|
<style>
|
|
h1 {
|
|
text-align: center;
|
|
font-size: 2.8em;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
margin: 0 0 0.5em 0;
|
|
}
|
|
</style> |