Revival archive website
Go to file
taskmanager 26d60d1ae8 Merge branch 'main' of https://github.com/tp-link-extender/revival-archive 2023-07-09 17:26:05 +01:00
pages Add rating categories for each revival: Website, Community, Clients, and Overall 2023-07-09 15:04:34 +01:00
src Landing + About 2023-07-09 17:25:57 +01:00
static Add revival index page and improve styling 2023-07-08 06:50:27 +01:00
.gitignore Update dependencies and host correctly on Netlify 2023-07-09 17:01:21 +01:00
.npmrc Initialise SvelteKit project 2023-07-04 21:46:11 +01:00
.prettierrc Initialise SvelteKit project 2023-07-04 21:46:11 +01:00
README.md Add rating categories for each revival: Website, Community, Clients, and Overall 2023-07-09 15:04:34 +01:00
UNLICENSE Rename LICENSE to UNLICENSE 2023-07-04 21:39:40 +01:00
netlify.toml Update dependencies and host correctly on Netlify 2023-07-09 17:01:21 +01:00
package.json Add preferred package manager in package.json to fix builds 2023-07-09 17:07:24 +01:00
pnpm-lock.yaml Update dependencies and host correctly on Netlify 2023-07-09 17:01:21 +01:00
svelte.config.js Update dependencies and host correctly on Netlify 2023-07-09 17:01:21 +01:00
tsconfig.json Initialise SvelteKit project 2023-07-04 21:46:11 +01:00
uno.config.ts Add UnoCSS and start site development I guess 2023-07-07 04:49:33 +01:00
vite.config.ts Add blog post system to load from markdown files with mdsvex and marked 2023-07-07 07:34:54 +01:00

README.md

revival-archive

Revival archive website

Pages/posts

To make a post, place it into the /pages directory. The filename will be used as the URL slug. The file must be in Markdown and contain a json header, like the following:

{
	"title": "First blog post",
	"date": "2023-07-06 7:29 PM"
}

A Revival description must include a "---" line between a short overview and the full post. A json header for a Revival could contain the following fields:

{
	"name": "Mercury",
	"date": "2023-07-09 01:58 PM",
	"clients": [2013],
	"rating": {
		"website": 5,
		"community": 5,
		"clients": 5,
		"overall": 5
	}
}