generated from ryanatkn/fuz_template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
123 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@ryanatkn/fuz': patch | ||
--- | ||
|
||
add `Community_Links.svelte`, `Community_Links_Panel.svelte`, and `Hidden_Personal_Links.svelte` |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<script lang="ts"> | ||
interface Props { | ||
selected?: 'spiderspace.org' | 'webdevladder.net' | 'ryanatkn.com'; | ||
} | ||
const {selected}: Props = $props(); | ||
</script> | ||
|
||
<ul> | ||
<li> | ||
join <a rel="me" href="https://discord.gg/YU5tyeK72X">the Discord</a> community | ||
</li> | ||
<li> | ||
<a | ||
rel="me" | ||
href="https://www.webdevladder.net/" | ||
class:selected={selected === 'webdevladder.net'}>webdevladder.net</a | ||
> | ||
- realworld webdev with TypeScript and Svelte, YouTube channels | ||
<a rel="me" href="https://youtube.com/@webdevladder">@webdevladder</a> | ||
and | ||
<a rel="me" href="https://youtube.com/@webdevladder_vods">@webdevladder_vods</a | ||
>{#if selected === 'webdevladder.net'}, you are here{/if} | ||
</li> | ||
<li> | ||
<a rel="me" href="https://www.spiderspace.org/" class:selected={selected === 'spiderspace.org'} | ||
>spiderspace.org</a | ||
> | ||
- nontechnical design videos where we'll make a social website together with | ||
<a href="https://zzz.ryanatkn.com/">Zzz</a> when it's ready, YouTube channel | ||
<a rel="me" href="https://youtube.com/@spiderspace_8000">@spiderspace_8000</a | ||
>{#if selected === 'spiderspace.org'}, you are here{/if} | ||
</li> | ||
<li> | ||
<a rel="me" href="https://www.ryanatkn.com/" class:selected={selected === 'ryanatkn.com'} | ||
>ryanatkn.com</a | ||
> | ||
- my homepage{#if selected === 'ryanatkn.com'}, you are here{/if} | ||
</li> | ||
<li> | ||
GitHub - <a rel="me" href="https://github.com/ryanatkn">@ryanatkn</a> and | ||
<a rel="me" href="https://github.com/spiderspace">@spiderspace</a> | ||
</li> | ||
<li> | ||
Mastodon as | ||
<a rel="me" href="https://mastodon.social/@webdevladder">@webdevladder@mastodon.social</a> | ||
and | ||
<a rel="me" href="https://hci.social/@ryanatkn">@ryanatkn@hci.social</a> | ||
</li> | ||
<li> | ||
@webdevladder on <a rel="me" href="https://twitter.com/webdevladder">Twitter</a>, | ||
<a rel="me" href="https://www.reddit.com/user/webdevladder/">Reddit</a>, and | ||
<a href="https://news.ycombinator.com/user?id=webdevladder">Hacker News</a> | ||
</li> | ||
<li> | ||
support me at <a href="https://www.ryanatkn.com/funding">ryanatkn.com/funding</a> | ||
</li> | ||
</ul> | ||
|
||
<style> | ||
li > a { | ||
word-break: break-all; | ||
} | ||
</style> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<script lang="ts"> | ||
import Community_Links from '$lib/Community_Links.svelte'; | ||
</script> | ||
|
||
<section class="panel p_lg"> | ||
<h2 class="mt_0 mb_lg">Links</h2> | ||
<Community_Links /> | ||
</section> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<div hidden> | ||
@ryanatkn@hci.social on <a rel="me" href="https://hci.social/@ryanatkn">Mastodon</a> | ||
</div> | ||
<div hidden> | ||
@webdevladder@mastodon.social on <a rel="me" href="https://mastodon.social/@webdevladder" | ||
>Mastodon</a | ||
> | ||
</div> |
This file contains 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
This file contains 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
This file contains 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