updated file tree

Signed-off-by: Ash Entwisle <ash.entwisle@protonmail.com>
issue/index
Ash Entwisle 2023-09-18 17:08:36 +01:00
parent 24a7aeb2ee
commit 350a8936d9
No known key found for this signature in database
GPG Key ID: 0E3CBB6B4BE9FE33
13 changed files with 57 additions and 1 deletions

22
package-lock.json generated
View File

@ -15,6 +15,7 @@
"@astrojs/sitemap": "^3.0.0",
"@astrojs/tailwind": "^5.0.0",
"astro": "^3.0.13",
"sass": "^1.66.1",
"tailwindcss": "^3.0.24"
}
},
@ -2339,6 +2340,11 @@
],
"license": "BSD-3-Clause"
},
"node_modules/immutable": {
"version": "4.3.4",
"resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz",
"integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA=="
},
"node_modules/import-meta-resolve": {
"version": "3.0.0",
"license": "MIT",
@ -4815,6 +4821,22 @@
],
"license": "MIT"
},
"node_modules/sass": {
"version": "1.67.0",
"resolved": "https://registry.npmjs.org/sass/-/sass-1.67.0.tgz",
"integrity": "sha512-SVrO9ZeX/QQyEGtuZYCVxoeAL5vGlYjJ9p4i4HFuekWl8y/LtJ7tJc10Z+ck1c8xOuoBm2MYzcLfTAffD0pl/A==",
"dependencies": {
"chokidar": ">=3.0.0 <4.0.0",
"immutable": "^4.0.0",
"source-map-js": ">=0.6.2 <2.0.0"
},
"bin": {
"sass": "sass.js"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/sax": {
"version": "1.2.4",
"license": "ISC"

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

Before

Width:  |  Height:  |  Size: 108 KiB

After

Width:  |  Height:  |  Size: 108 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 109 KiB

After

Width:  |  Height:  |  Size: 109 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

View File

@ -0,0 +1,31 @@
---
import Boilerplate from "../layouts/Boilerplate.astro";
import Todo from "../components/Todo.astro";
const keywords = [
"hull",
"computer",
"science",
"society",
"hcss",
"hcssoc",
"hull",
"university",
"students",
"student",
"union",
"hull",
"css",
"society",
"computer",
"Blog"
];
---
<Boilerplate
title="Hull Computer Science Society Blog"
description="This is the Blog for the Hull Computer Science Society"
keywords={keywords}
>
<Todo />
</Boilerplate>

View File

@ -17,7 +17,10 @@ const keywords = [
description="This is the Hull Computer Science Society website."
keywords={keywords}
>
<Landing />
<About />
<Execs />
<Links />
</Boilerplate>