1
0
Fork
You've already forked Website
0
My Website
  • Svelte 61.6%
  • TypeScript 19%
  • CSS 16.9%
  • JavaScript 1.9%
  • HTML 0.6%
2024年04月26日 23:53:08 +02:00
.forgejo/workflows Add ci workflow 2024年04月26日 23:53:08 +02:00
src Fix build 2024年04月16日 21:53:26 +02:00
static Add quizflow blogpost 2024年04月15日 22:52:23 +02:00
.eslintignore Basic blog setup 2024年02月12日 21:37:12 +01:00
.eslintrc.cjs Basic blog setup 2024年02月12日 21:37:12 +01:00
.gitignore Setup sveltekit 2024年02月10日 22:47:35 +01:00
.npmrc Setup sveltekit 2024年02月10日 22:47:35 +01:00
LICENSE Initial commit 2024年02月10日 21:41:45 +00:00
package-lock.json Add quizflow blogpost 2024年04月15日 22:52:23 +02:00
package.json Add quizflow blogpost 2024年04月15日 22:52:23 +02:00
README.md Remove filler and write out a README 2024年03月16日 21:27:20 +01:00
svelte.config.js Fix build 2024年04月16日 21:53:26 +02:00
tsconfig.json Setup sveltekit 2024年02月10日 22:47:35 +01:00
vite.config.ts Setup sveltekit 2024年02月10日 22:47:35 +01:00

My Website

Create a post

To create a post go to the src/content/posts directory, select the language the post is in. Go into the following directory and create a markdown file with the name as the slug of the post. Followingly fill out this header:

---
title: "<title of the post>"
author: "<author of the post>"
published: "<publishing date as YYYY-MM-DDTHH:mm:ss.sssZ" # T: literal
 # Z: timezone offset
 # HH: 0-23 clock
 # only YYYY-MM-DD are 
 # necessary, specificness 
 # may be omitted
updated: "<date of last update as YYYY-MM-DDTHH:mm:ss.sssZ"
abstract: "<summary of the article"
permalink: "<permalink of the article ({lang}/blog/slug(without .md)))>"
image: "<a title image uri>"
image_alt: "<alt text of the image>"
lang: "<language (2 letter)>"
categories:
- <categories this post belongs to>
---

Create a Project

To create a project go to the src/content/posts directory, select the language the project is in. Go into the following directory and create a markdown file with the name as the slug of the project. Followingly fill out this header:

---
title: "<name of the project>"
category: "<the corresponding blog category>"
pinned: ["<permalinks to pinned blogposts>"]
description: "<short description of the project"
status: "<project status either idea, paused, waiting, running, abandoned, or finished>"
image: "<an image for the project>"
image_alt: "<alt text of the project image"
permalink: "<permalink of the project ({lang}/projects/slug(without .md)))>"
lang: "<language (2 letter)"
keywords:
 - keywords about this project
gallery:
 [
 { image: "<url of first image of gallery", alt: "alt text of first image in gallery" }
 ]
---