forked from ProjectSegfault/website
run prettier on all svelte files
This commit is contained in:
parent
b4c8e2131b
commit
9fa9b08eef
@ -1,6 +1,11 @@
|
|||||||
<a
|
<a
|
||||||
href="/"
|
href="/"
|
||||||
class="text-text no-underline flex items-center gap-2">
|
class="text-text no-underline flex items-center gap-2"
|
||||||
<img src="/logo.png" alt="Project Segfault logo" class="w-7">
|
>
|
||||||
|
<img
|
||||||
|
src="/logo.png"
|
||||||
|
alt="Project Segfault logo"
|
||||||
|
class="w-7"
|
||||||
|
/>
|
||||||
Project Segfault</a
|
Project Segfault</a
|
||||||
>
|
>
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
text: "Wiki",
|
text: "Wiki",
|
||||||
external: true
|
external: true
|
||||||
},
|
},
|
||||||
{ href: "/blog", text: "Blog"},
|
{ href: "/blog", text: "Blog" },
|
||||||
{
|
{
|
||||||
href: "https://status.projectsegfau.lt/",
|
href: "https://status.projectsegfau.lt/",
|
||||||
text: "Status",
|
text: "Status",
|
||||||
|
@ -6,9 +6,7 @@
|
|||||||
{#if address}
|
{#if address}
|
||||||
<details class="p-0">
|
<details class="p-0">
|
||||||
<summary>Address</summary>
|
<summary>Address</summary>
|
||||||
<code class="break-words whitespace-normal"
|
<code class="break-words whitespace-normal">{address}</code>
|
||||||
>{address}</code
|
|
||||||
>
|
|
||||||
</details>
|
</details>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
|
@ -37,7 +37,12 @@
|
|||||||
|
|
||||||
{#if !data.users.error}
|
{#if !data.users.error}
|
||||||
{#if data.users.users.some(isOnline)}
|
{#if data.users.users.some(isOnline)}
|
||||||
<p class="my-4">There {onlineUserCount === 1 ? "is" : "are"} {onlineUserCount} {onlineUserCount === 1 ? "user" : "users"} online out of {userCount} users.</p>
|
<p class="my-4">
|
||||||
|
There {onlineUserCount === 1 ? "is" : "are"}
|
||||||
|
{onlineUserCount}
|
||||||
|
{onlineUserCount === 1 ? "user" : "users"} online out of {userCount}
|
||||||
|
users.
|
||||||
|
</p>
|
||||||
<div class="flex flex-row flex-wrap gap-4">
|
<div class="flex flex-row flex-wrap gap-4">
|
||||||
{#each data.users.users as user}
|
{#each data.users.users as user}
|
||||||
{#if user.online}
|
{#if user.online}
|
||||||
|
@ -53,11 +53,15 @@
|
|||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if user.matrix}
|
{#if user.matrix}
|
||||||
<a href="https://matrix.to/#/{user.matrix}"><div class="i-simple-icons:matrix" /></a>
|
<a href="https://matrix.to/#/{user.matrix}"
|
||||||
|
><div class="i-simple-icons:matrix" /></a
|
||||||
|
>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if user.fediverse}
|
{#if user.fediverse}
|
||||||
<a href="https://{user.fediverse}"><div class="i-simple-icons:mastodon" /></a>
|
<a href="https://{user.fediverse}"
|
||||||
|
><div class="i-simple-icons:mastodon" /></a
|
||||||
|
>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if user.website}
|
{#if user.website}
|
||||||
|
@ -31,7 +31,12 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<label for="ssh"><a href="https://wiki.projectsegfau.lt/index.php?title=Generating_an_SSH_key">SSH public key</a></label>
|
<label for="ssh"
|
||||||
|
><a
|
||||||
|
href="https://wiki.projectsegfau.lt/index.php?title=Generating_an_SSH_key"
|
||||||
|
>SSH public key</a
|
||||||
|
></label
|
||||||
|
>
|
||||||
<textarea
|
<textarea
|
||||||
name="ssh"
|
name="ssh"
|
||||||
placeholder="[...]"
|
placeholder="[...]"
|
||||||
@ -51,7 +56,9 @@
|
|||||||
<button
|
<button
|
||||||
type="submit"
|
type="submit"
|
||||||
class="transition-filter duration-200 hover:brightness-75"
|
class="transition-filter duration-200 hover:brightness-75"
|
||||||
>Submit registration <div class="i-ic:outline-arrow-circle-right" /></button
|
>Submit registration <div
|
||||||
|
class="i-ic:outline-arrow-circle-right"
|
||||||
|
/></button
|
||||||
>
|
>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
@ -9,7 +9,9 @@
|
|||||||
|
|
||||||
{#if !data.users.error}
|
{#if !data.users.error}
|
||||||
{#if data.users.users.length > 0}
|
{#if data.users.users.length > 0}
|
||||||
<p class="my-4">There are {data.users.users.length} users on the pubnix.</p>
|
<p class="my-4">
|
||||||
|
There are {data.users.users.length} users on the pubnix.
|
||||||
|
</p>
|
||||||
<div class="flex flex-row flex-wrap gap-4">
|
<div class="flex flex-row flex-wrap gap-4">
|
||||||
{#each data.users.users as user}
|
{#each data.users.users as user}
|
||||||
<User {user} />
|
<User {user} />
|
||||||
|
@ -32,8 +32,7 @@
|
|||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if member.xmpp}
|
{#if member.xmpp}
|
||||||
<a href={member.xmpp}
|
<a href={member.xmpp}><div class="i-simple-icons:xmpp" /></a
|
||||||
><div class="i-simple-icons:xmpp" /></a
|
|
||||||
>
|
>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user