Compare commits
No commits in common. "deff396cdcdf9742dc90c413e00aa11dabf9a5cb" and "279135e079f80aa0b6b7d424c37110970b500b4b" have entirely different histories.
deff396cdc
...
279135e079
3 changed files with 5 additions and 73 deletions
|
@ -1,8 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"href": "https://iceshrimp.dev/iceshrimp/Iceshrimp.NET",
|
|
||||||
"name": "Iceshrimp.NET",
|
|
||||||
"description": "The .NET rewrite of the Iceshrimp server software for the Fediverse.",
|
|
||||||
"activity": "https://iceshrimp.dev/iceshrimp/Iceshrimp.NET/commits/branch/dev/search?q=author%3Apancakes&all="
|
|
||||||
}
|
|
||||||
]
|
|
|
@ -1,17 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"href": "https://git.meow.company/pancakes/fedifeeds",
|
|
||||||
"name": "fedifeeds",
|
|
||||||
"description": "RSS feeds to Mastodon API. Supports multiple feeds per account, Markdown, and automatic threading (split into multiple notes to fit character limit)."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"href": "https://shrimp.meow.company/@iceshrimp_updates",
|
|
||||||
"name": "Iceshrimp Updates Bot",
|
|
||||||
"description": "This bot automatically checks for Iceshrimp-js and Iceshrimp.NET releases and posts them. Based on fedifeeds."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"href": "https://shrimp.meow.company/@scp_pages",
|
|
||||||
"name": "SCP Wiki Pages Bot",
|
|
||||||
"description": "Posts random pages from the SCP Foundation wiki on the Fediverse."
|
|
||||||
}
|
|
||||||
]
|
|
|
@ -1,9 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import DateTime from "$lib/components/DateTime.svelte";
|
import DateTime from "$lib/components/DateTime.svelte";
|
||||||
import { getPages } from "$lib/pages";
|
import { getPages } from "$lib/pages";
|
||||||
import contributions from "../data/contributions.json"
|
|
||||||
import links from "../data/links.json";
|
import links from "../data/links.json";
|
||||||
import projects from "../data/projects.json";
|
|
||||||
|
|
||||||
const pages = getPages();
|
const pages = getPages();
|
||||||
|
|
||||||
|
@ -75,47 +73,6 @@
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
|
|
||||||
<h2 id="projects">Projects</h2>
|
|
||||||
|
|
||||||
<p>Projects made by me</p>
|
|
||||||
|
|
||||||
<ul class="page-links">
|
|
||||||
{#each projects as project}
|
|
||||||
<li>
|
|
||||||
<h3>
|
|
||||||
<a href={project.href} target="_blank">
|
|
||||||
{project.name}
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<p>{project.description}</p>
|
|
||||||
</li>
|
|
||||||
{/each}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2 id="contributions">Contributions</h2>
|
|
||||||
|
|
||||||
<p>Projects not made by me that I have contributed to</p>
|
|
||||||
|
|
||||||
<ul class="page-links">
|
|
||||||
{#each contributions as contribution}
|
|
||||||
<li>
|
|
||||||
<h3>
|
|
||||||
<a href={contribution.href} target="_blank">
|
|
||||||
{contribution.name}
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<p>{contribution.description}</p>
|
|
||||||
{#if contribution.activity}
|
|
||||||
<p>
|
|
||||||
<small>
|
|
||||||
<a href={contribution.activity} target="_blank">View activity</a>
|
|
||||||
</small>
|
|
||||||
</p>
|
|
||||||
{/if}
|
|
||||||
</li>
|
|
||||||
{/each}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2 id="pages">Pages</h2>
|
<h2 id="pages">Pages</h2>
|
||||||
|
|
||||||
<p>Things I've written</p>
|
<p>Things I've written</p>
|
||||||
|
@ -458,27 +415,27 @@
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.page-links {
|
ol.page-links {
|
||||||
padding-left: 0.5rem;
|
padding-left: 0.5rem;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-links li {
|
ol.page-links li {
|
||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
|
|
||||||
background-color: var(--background-2);
|
background-color: var(--background-2);
|
||||||
border-left: 2px solid var(--accent);
|
border-left: 2px solid var(--accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-links li {
|
ol.page-links li {
|
||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-links li > *:first-child {
|
ol.page-links li > *:first-child {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-links li > *:last-child {
|
ol.page-links li > *:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue