This commit is contained in:
whidix
2022-12-31 16:01:49 +01:00
parent 930beaa857
commit 5e2855d013
4 changed files with 10 additions and 10 deletions

View File

@@ -12,9 +12,11 @@ export type Mdsvex = {
export const projects = new Map(
Object.entries(
import.meta.glob<Mdsvex>('../routes/projects/*/*{.md,.svelte,index.md.index.svelte}')
import.meta.glob<Mdsvex>('../routes/projects/*/*{.md,.svelte,+page.md.index.svelte}')
).map(([path, load]) => [
path.replace(/(\.md|\.svelte|\/index\.md|\/index\.svelte)$/, '').replace(/^\.\.\/routes/, ''),
path
.replace(/(\+page\.md|\.svelte|\/index\.md|\/index\.svelte)$/, '')
.replace(/^\.\.\/routes/, ''),
load
])
);

View File

@@ -12,9 +12,11 @@ export type Mdsvex = {
export const shs = new Map(
Object.entries(
import.meta.glob<Mdsvex>('../routes/shs/*/*{.md,.svelte,index.md.index.svelte}')
import.meta.glob<Mdsvex>('../routes/shs/*/*{.md,.svelte,+page.md.index.svelte}')
).map(([path, load]) => [
path.replace(/(\.md|\.svelte|\/index\.md|\/index\.svelte)$/, '').replace(/^\.\.\/routes/, ''),
path
.replace(/(\+page\.md|\.svelte|\/index\.md|\/index\.svelte)$/, '')
.replace(/^\.\.\/routes/, ''),
load
])
);

View File

@@ -7,6 +7,8 @@ tags:
- svelte
---
# Internship report
During the year, I developed a website for a new association in Toulouse related to TISA (Toulouse, Computer Science, Security and Association). I developed this website using the Svelte framework because I was intrigued by its promise of performance and simplicity of development.
During this internship, I learned to use Svelte effectively and to set up a solid project architecture. I also had to work closely with the members of the association to understand their needs and vision for the website, in order to create a final product that met their expectations.

View File

@@ -1,6 +0,0 @@
---
title: 🎚️ Internship report
date: 2022-11-15
description:
tags:
---