refactor: cleanup warnings
All checks were successful
create archive with lfs / tag (push) Successful in 5s
All checks were successful
create archive with lfs / tag (push) Successful in 5s
This commit is contained in:
parent
62fb94c311
commit
b4eadbe13a
@ -1,5 +1,5 @@
|
|||||||
import { env } from '$env/dynamic/private'
|
import { env } from '$env/dynamic/private'
|
||||||
import { Bot, Post } from "@skyware/bot";
|
import { Bot, type Post } from "@skyware/bot";
|
||||||
import { get, writable } from 'svelte/store'
|
import { get, writable } from 'svelte/store'
|
||||||
|
|
||||||
const bskyClient = writable<null | Bot>(null)
|
const bskyClient = writable<null | Bot>(null)
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { PUBLIC_BASE_URL } from '$env/static/public';
|
import { PUBLIC_BASE_URL } from '$env/static/public';
|
||||||
import Note from '../components/note.svelte';
|
import Note from '../components/note.svelte';
|
||||||
import Tooltip from '../components/tooltip.svelte';
|
|
||||||
import Window from '../components/window.svelte';
|
import Window from '../components/window.svelte';
|
||||||
import LatestStuff from './lateststuff.md';
|
import LatestStuff from './lateststuff.md';
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
import { PUBLIC_BASE_URL } from '$env/static/public';
|
import { PUBLIC_BASE_URL } from '$env/static/public';
|
||||||
import Window from '../../components/window.svelte';
|
import Window from '../../components/window.svelte';
|
||||||
import '../../styles/app.css';
|
import '../../styles/app.css';
|
||||||
import { page } from '$app/stores';
|
import { page } from '$app/state';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
title: any;
|
title: any;
|
||||||
@ -37,7 +37,7 @@
|
|||||||
<Window title="metadata" sticky>
|
<Window title="metadata" sticky>
|
||||||
<div class="prose prose-ralsei">
|
<div class="prose prose-ralsei">
|
||||||
<ul>
|
<ul>
|
||||||
<link class="u-url" href="{PUBLIC_BASE_URL}{$page.url.pathname}" />
|
<link class="u-url" href="{PUBLIC_BASE_URL}{page.url.pathname}" />
|
||||||
<li>author: <a rel="author" class="p-author h-card" href={PUBLIC_BASE_URL}>dusk</a></li>
|
<li>author: <a rel="author" class="p-author h-card" href={PUBLIC_BASE_URL}>dusk</a></li>
|
||||||
<li>published on: <time class="dt-published" datetime="{date} 00:00:00">{date}</time></li>
|
<li>published on: <time class="dt-published" datetime="{date} 00:00:00">{date}</time></li>
|
||||||
<li class="max-w-80 text-wrap">
|
<li class="max-w-80 text-wrap">
|
||||||
|
@ -9,12 +9,6 @@ excerpt = "photos from my trip to japan"
|
|||||||
export let data
|
export let data
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
|
||||||
picture {
|
|
||||||
margin: 0 !important;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
## 1-16 / 09 / 2024
|
## 1-16 / 09 / 2024
|
||||||
|
|
||||||
photos i took while on a japan trip
|
photos i took while on a japan trip
|
||||||
@ -26,6 +20,6 @@ fixed!!!! i also added a few images because im dumb and forgot
|
|||||||
|
|
||||||
<div class="grid gap-0.5 auto-rows-min md:grid-cols-4">
|
<div class="grid gap-0.5 auto-rows-min md:grid-cols-4">
|
||||||
{#each data.images as image}
|
{#each data.images as image}
|
||||||
<a class="!animate-none" href={image.og}><img loading="lazy" width={480} height={480} src={image.thumb} class="w-full h-full object-cover [image-rendering:high-quality_!important]"/></a>
|
<a class="!animate-none" href={image.og}><img loading="lazy" width={480} height={480} src={image.thumb} alt="from japan trip" class="w-full h-full object-cover [image-rendering:high-quality_!important]"/></a>
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
@ -1,4 +1,4 @@
|
|||||||
import { getLastPosts, getUserPosts } from '$lib/bluesky.js';
|
import { getLastPosts } from '$lib/bluesky.js';
|
||||||
import { noteFromBskyPost } from '../../components/note.svelte';
|
import { noteFromBskyPost } from '../../components/note.svelte';
|
||||||
|
|
||||||
export const load = async ({ }) => {
|
export const load = async ({ }) => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user