This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script lang="ts"> | |
| import '../app.css'; | |
| import '@fontsource-variable/oxanium'; | |
| </script> | |
| <slot /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <img use:ukiyo={{ scale: 1.4, speed: 1.1 }} src={'https://source.unsplash.com/random/400x400'}/> | |
| <img use:ukiyo={{}} src={'https://source.unsplash.com/random/600x400'} /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Title of the document</title> | |
| </head> | |
| <body> | |
| <h1>My code is here</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import url('https://fonts.googleapis.com/css2?family=Lato'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { PostsStore, type Posts$input } from "$houdini"; | |
| import { error } from "@sveltejs/kit"; | |
| import type { PageServerLoad } from "./$types"; | |
| const NUM_ITEMS = 1; | |
| export const load: PageServerLoad = async (event) => { | |
| let after = event.url.searchParams.get("after"); | |
| let before = event.url.searchParams.get("before"); | |
| if (after && before) { | |
| before = null; |