diff --git a/src/pages/en/tolocars/index.mdx b/src/pages/en/tolocars/index.mdx
new file mode 100644
index 00000000..7e9aed12
--- /dev/null
+++ b/src/pages/en/tolocars/index.mdx
@@ -0,0 +1,6 @@
+---
+layout: "@layouts/TolocarsIndex.astro"
+title: Tolocars
+darkNavigation: true
+footerGrey: true
+---
diff --git a/src/pages/en/tolocars/support-vehicle01.mdx b/src/pages/en/tolocars/support-vehicle01.mdx
new file mode 100644
index 00000000..0cd382c9
--- /dev/null
+++ b/src/pages/en/tolocars/support-vehicle01.mdx
@@ -0,0 +1,14 @@
+---
+layout: "@layouts/TolocarsSingleView.astro"
+title: The Cadus Supporter
+car: Support Vehicle 01
+subtitle: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Arcu ut varius vulputate eget curabitur sagittis, id
+tags:
+ - Staff transport
+ - Material transport
+date: January to June 2022
+operators:
+ - cadus
+img: images/cars/image2.jpg
+order: 2
+---
\ No newline at end of file
diff --git a/src/pages/en/tolocars/tolocar03.mdx b/src/pages/en/tolocars/tolocar03.mdx
new file mode 100644
index 00000000..e50c753f
--- /dev/null
+++ b/src/pages/en/tolocars/tolocar03.mdx
@@ -0,0 +1,13 @@
+---
+layout: "@layouts/TolocarsSingleView.astro"
+title: The MitOst Sprinter II
+car: Tolocar 03
+subtitle: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Arcu ut varius vulputate eget curabitur sagittis, id
+tags:
+ - Making
+date: September 2022 - Open End
+operators:
+ - hiww
+img: images/cars/image1.jpg
+order: 4
+---
diff --git a/src/pages/en/tolocars/tolocar04.mdx b/src/pages/en/tolocars/tolocar04.mdx
new file mode 100644
index 00000000..c5caac6f
--- /dev/null
+++ b/src/pages/en/tolocars/tolocar04.mdx
@@ -0,0 +1,14 @@
+---
+layout: "@layouts/TolocarsSingleView.astro"
+title: The HIWW Van
+car: Tolocar 04
+subtitle: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Arcu ut varius vulputate eget curabitur sagittis, id
+tags:
+ - Making
+ - Open source
+date: September 2022 - Open End
+operators:
+ - hiww
+img: images/cars/image5.jpg
+order: 5
+---
\ No newline at end of file
diff --git a/src/pages/en/tolocars/tolocar05.mdx b/src/pages/en/tolocars/tolocar05.mdx
new file mode 100644
index 00000000..feb39f83
--- /dev/null
+++ b/src/pages/en/tolocars/tolocar05.mdx
@@ -0,0 +1,22 @@
+---
+layout: "@layouts/TolocarsSingleView.astro"
+title: The HIWW Truck
+car: Tolocar 05
+subtitle: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Arcu ut varius vulputate eget curabitur sagittis, id
+tags:
+ - Making
+ - Open source
+date: September 2022 - Open End
+operators:
+ - hiww
+img: images/cars/image7.jpg
+order: 6
+---
+
+## Introduction
+
+## Security measures
+
+## Setting up the software
+
+## Subheadline
\ No newline at end of file
diff --git a/src/util/ContentTransformer.ts b/src/util/ContentTransformer.ts
index ddf7ae91..2f048e25 100644
--- a/src/util/ContentTransformer.ts
+++ b/src/util/ContentTransformer.ts
@@ -2,6 +2,7 @@ import type {
AcademyPageParent,
AcademyPageFrontmatter,
} from "@interfaces/IAcademy";
+import type { ITolocarsFrontmatter } from "@interfaces/ITolocars";
import type { MDXInstance } from "astro";
export function flatAcademyContentMap(
@@ -66,3 +67,18 @@ export function transformAcademy(rawAcademyContent) {
return coursesAndLessons;
}
+
+export function trimAndSortTolocars(
+ rawTolocarsContent: MDXInstance[],
+ count?: number
+) {
+ const rawSortedTolocarsContentWithoutIndex = rawTolocarsContent
+ .filter((tolocar) => !tolocar.file.includes("index.mdx"))
+ .sort((a, b) => b.frontmatter.order - a.frontmatter.order);
+
+ const trimmedTolocars = count
+ ? rawSortedTolocarsContentWithoutIndex.slice(0, count)
+ : rawSortedTolocarsContentWithoutIndex;
+
+ return trimmedTolocars;
+}
diff --git a/tailwind.config.cjs b/tailwind.config.cjs
index c8b56a24..3717811c 100644
--- a/tailwind.config.cjs
+++ b/tailwind.config.cjs
@@ -4,7 +4,7 @@ module.exports = {
theme: {
extend: {
transitionProperty: {
- 'height': 'height',
+ height: "height",
},
opacity: {
15: ".15",
@@ -35,6 +35,7 @@ module.exports = {
"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.301) 30.5%, rgba(0, 0, 0, 0.7) 66.96%), url(/images/classroom.jpg)",
"community-messages":
"linear-gradient(-6.5deg, rgba(0, 150, 100, 1) 0%, rgba(0, 150, 100, 0) 31.54%, rgba(0, 150, 100, 0) 66.78%, rgba(0, 150, 100, 1) 100%), url(/community_messages.svg)",
+ "illustration-5": "url('/tolocar_illustration_5.svg')",
},
},
colors: {