Skip to content

Commit

Permalink
Create basic planner for 28Ga.
Browse files Browse the repository at this point in the history
  • Loading branch information
SilasBerger committed Aug 10, 2024
1 parent 1de7ccd commit e672e87
Show file tree
Hide file tree
Showing 3 changed files with 226 additions and 0 deletions.
98 changes: 98 additions & 0 deletions content/sites/gbsl/klassen/28Ga/einzellektion.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
[
{
"cells": ["12.08.2024", "Ausfall: Schulstart", ""],
"type": "holiday",
"icon": "mdi-party-popper"
},
{
"cells": ["19.08.2024", "", ""]
},
{
"cells": ["26.08.2024", "", ""]
},
{
"cells": ["02.09.2024", "", ""]
},
{
"cells": ["09.09.2024", "", ""]
},
{
"cells": ["16.09.2024", "Sonderwoche", ""],
"type": "holiday",
"icon": "mdi-rv-truck"
},
{
"cells": ["23.09.2024", "Herbstferien", ""],
"type": "holiday"
},
{
"cells": ["30.09.2024", "Herbstferien", ""],
"type": "holiday"
},
{
"cells": ["07.10.2024", "Herbstferien", ""],
"type": "holiday"
},
{
"cells": ["14.10.2024", "", ""]
},
{
"cells": ["21.10.2024", "", ""]
},
{
"cells": ["28.10.2024", "", ""]
},
{
"cells": ["04.11.2024", "", ""]
},
{
"cells": ["11.11.2024", "", ""]
},
{
"cells": ["14.11.2024", "Notenschluss Zwischenzeugnis", ""],
"type": "event"
},
{
"cells": ["18.11.2024", "", ""]
},
{
"cells": ["25.11.2024", "", ""]
},
{
"cells": ["02.12.2024", "", ""]
},
{
"cells": ["09.12.2024", "", ""]
},
{
"cells": ["16.12.2024", "", ""]
},
{
"cells": ["23.12.2024", "Winterferien", ""],
"type": "holiday"
},
{
"cells": ["30.12.2024", "Winterferien", ""],
"type": "holiday"
},
{
"cells": ["06.01.2025", "", ""]
},
{
"cells": ["13.01.2025", "", ""]
},
{
"cells": ["20.01.2025", "", ""]
},
{
"cells": ["23.01.2025", "Notenschluss", ""],
"type": "event"
},
{
"cells": ["27.01.2025", "", ""]
},
{
"cells": ["31.01.2025", "Semesterende", ""],
"type": "event"
}
]
30 changes: 30 additions & 0 deletions content/sites/gbsl/klassen/28Ga/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import Table from "@site/src/app/components/Table";
import einzellektion from './einzellektion.json';
import praktikum from "./praktikum.json";
import {SortTimeTableByDate} from "@site/src/app/helpers/time";

# Informatik 28Ga



::::Tabs
:::Tab[Einzellektion]{value="el"}
<Table
header={["Datum", "Thema", "Inhalt"]}
compact
selectable
rows={einzellektion}
order={SortTimeTableByDate()}
/>
:::

:::Tab[Praktikum]{value="pra"}
<Table
header={["Datum", "Halbklasse", "Thema", "Inhalt"]}
compact
selectable
rows={praktikum}
order={SortTimeTableByDate()}
/>
:::
::::
98 changes: 98 additions & 0 deletions content/sites/gbsl/klassen/28Ga/praktikum.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
[
{
"cells": ["12.08.2024", "", "Ausfall: Schulstart", ""],
"type": "holiday",
"icon": "mdi-party-popper"
},
{
"cells": ["19.08.2024", "", "", ""]
},
{
"cells": ["26.08.2024", "", "", ""]
},
{
"cells": ["02.09.2024", "", "", ""]
},
{
"cells": ["09.09.2024", "", "", ""]
},
{
"cells": ["16.09.2024", "", "Sonderwoche", ""],
"type": "holiday",
"icon": "mdi-rv-truck"
},
{
"cells": ["23.09.2024", "", "Herbstferien", ""],
"type": "holiday"
},
{
"cells": ["30.09.2024", "", "Herbstferien", ""],
"type": "holiday"
},
{
"cells": ["07.10.2024", "", "Herbstferien", ""],
"type": "holiday"
},
{
"cells": ["14.10.2024", "", "", ""]
},
{
"cells": ["21.10.2024", "", "", ""]
},
{
"cells": ["28.10.2024", "", "", ""]
},
{
"cells": ["04.11.2024", "", "", ""]
},
{
"cells": ["11.11.2024", "", "", ""]
},
{
"cells": ["14.11.2024", "", "Notenschluss Zwischenzeugnis", ""],
"type": "event"
},
{
"cells": ["18.11.2024", "", "", ""]
},
{
"cells": ["25.11.2024", "", "", ""]
},
{
"cells": ["02.12.2024", "", "", ""]
},
{
"cells": ["09.12.2024", "", "", ""]
},
{
"cells": ["16.12.2024", "", "", ""]
},
{
"cells": ["23.12.2024", "", "Winterferien", ""],
"type": "holiday"
},
{
"cells": ["30.12.2024", "", "Winterferien", ""],
"type": "holiday"
},
{
"cells": ["06.01.2025", "", "", ""]
},
{
"cells": ["13.01.2025", "", "", ""]
},
{
"cells": ["20.01.2025", "", "", ""]
},
{
"cells": ["23.01.2025", "", "Notenschluss", ""],
"type": "event"
},
{
"cells": ["27.01.2025", "", "", ""]
},
{
"cells": ["31.01.2025", "", "Semesterende", ""],
"type": "event"
}
]

0 comments on commit e672e87

Please sign in to comment.