diff options
author | axtloss <axtlos@disroot.org> | 2024-12-24 19:25:48 +0100 |
---|---|---|
committer | axtloss <axtlos@disroot.org> | 2024-12-24 20:04:59 +0100 |
commit | e46cb88d3763a64e97557b2db2f9b74ae7627555 (patch) | |
tree | 9c00ad1e59f4fdc36e050d9329eb7cfdeb0588d2 /src/routes/projects/ProjectEntry.svelte | |
parent | c19fb8828e1dfdd4ce548269ff7cf08de96adf95 (diff) | |
download | website-e46cb88d3763a64e97557b2db2f9b74ae7627555.tar.gz website-e46cb88d3763a64e97557b2db2f9b74ae7627555.tar.bz2 |
new website dropped
Diffstat (limited to 'src/routes/projects/ProjectEntry.svelte')
-rw-r--r-- | src/routes/projects/ProjectEntry.svelte | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/routes/projects/ProjectEntry.svelte b/src/routes/projects/ProjectEntry.svelte deleted file mode 100644 index 53c69b5..0000000 --- a/src/routes/projects/ProjectEntry.svelte +++ /dev/null @@ -1,36 +0,0 @@ -<script lang="ts"> - export let name: string; - export let description: string; - export let projType: string; - export let link: string; - export let id: string = name.toLowerCase().replaceAll(" ", "_"); -</script> - -<section id="{id}" class="box"> - <h2>{name}</h2> - <section id="fsverify-link"> - <p class="subheader"> - {projType} - <a href="{link}">{link}</a> - </p> - </section> - <slot /> - <p class="description"> - {description} - </p> -</section> - - -<style lang="scss"> - @use 'sass:color'; - section { - max-width: 790px; - width: 100%; - & h2 { - margin-bottom: 0px; - } - & .description { - text-align: center; - } - } - -</style> |