Skip to content

Commit ec8366d

Browse files
committed
First changes
1 parent ece1b36 commit ec8366d

File tree

19 files changed

+648
-354
lines changed

19 files changed

+648
-354
lines changed

abilitytechlab.github.io

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 2037f93d215c8d2a0b930495c7f59f394ef9074b

config.toml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,34 @@ theme= 'PaperMod'
1515
url = "/about"
1616
weight = 2
1717

18+
[[menu.main]]
19+
name = "Documentation"
20+
url = "/documentation"
21+
weight = 3
22+
23+
[[menu.main]]
24+
name = "Contribute"
25+
url = "/contribute"
26+
weight = 4
27+
1828
[[menu.main]]
1929
name = "Blog"
2030
url = "/blog"
21-
weight = 3
31+
weight = 5
2232

2333
[[menu.main]]
2434
name = "Post"
2535
url = "/post"
26-
weight = 4
36+
weight = 6
37+
38+
39+
[params]
40+
defaultTheme = "dark"
41+
42+
[params.homeInfoParams]
43+
Title = "Hi there 👋"
44+
Content = "Welcome to my website."
45+
46+
[[params.socialIcons]]
47+
name = "email"
48+
url = "mailto:[email protected]"

content/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
date = '2025-01-12T11:07:13+01:00'
2+
date = '2025-01-12T11:07:13+02:00'
33
draft = 'true'
44
title = 'About the coat assistant'
55
image = '/img/coatassistant.JPEG'

content/contribute.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
+++
2+
date = '2025-01-12T11:07:13+03:00'
3+
draft = 'true'
4+
title = 'Do you want to contribute to this project?'
5+
6+
+++

content/documentation.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
+++
2+
date = '2025-01-12T11:07:13+03:00'
3+
draft = 'true'
4+
title = 'Find the documentation here!'
5+
6+
+++
7+
8+
# Components list
9+
text
10+
11+
# Software
12+
text
13+
14+
# Hardware
15+
text
16+
17+
# New components
18+
text

public/404.html

Lines changed: 12 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -27,45 +27,13 @@
2727
}
2828

2929
</style>
30-
<style>
31-
@media (prefers-color-scheme: dark) {
32-
:root {
33-
--theme: rgb(29, 30, 32);
34-
--entry: rgb(46, 46, 51);
35-
--primary: rgb(218, 218, 219);
36-
--secondary: rgb(155, 156, 157);
37-
--tertiary: rgb(65, 66, 68);
38-
--content: rgb(196, 196, 197);
39-
--code-block-bg: rgb(46, 46, 51);
40-
--code-bg: rgb(55, 56, 62);
41-
--border: rgb(51, 51, 51);
42-
}
43-
44-
.list {
45-
background: var(--theme);
46-
}
47-
48-
.list:not(.dark)::-webkit-scrollbar-track {
49-
background: 0 0;
50-
}
51-
52-
.list:not(.dark)::-webkit-scrollbar-thumb {
53-
border-color: var(--theme);
54-
}
55-
}
56-
57-
</style>
5830
</noscript>
5931
</head>
6032

61-
<body class="list" id="top">
33+
<body class="list dark" id="top">
6234
<script>
63-
if (localStorage.getItem("pref-theme") === "dark") {
64-
document.body.classList.add('dark');
65-
} else if (localStorage.getItem("pref-theme") === "light") {
35+
if (localStorage.getItem("pref-theme") === "light") {
6636
document.body.classList.remove('dark')
67-
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
68-
document.body.classList.add('dark');
6937
}
7038

7139
</script>
@@ -108,6 +76,16 @@
10876
<span>About</span>
10977
</a>
11078
</li>
79+
<li>
80+
<a href="http://localhost:1313/documentation" title="Documentation">
81+
<span>Documentation</span>
82+
</a>
83+
</li>
84+
<li>
85+
<a href="http://localhost:1313/contribute" title="Contribute">
86+
<span>Contribute</span>
87+
</a>
88+
</li>
11189
<li>
11290
<a href="http://localhost:1313/blog" title="Blog">
11391
<span>Blog</span>

public/about/index.html

Lines changed: 13 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -28,45 +28,13 @@
2828
}
2929

3030
</style>
31-
<style>
32-
@media (prefers-color-scheme: dark) {
33-
:root {
34-
--theme: rgb(29, 30, 32);
35-
--entry: rgb(46, 46, 51);
36-
--primary: rgb(218, 218, 219);
37-
--secondary: rgb(155, 156, 157);
38-
--tertiary: rgb(65, 66, 68);
39-
--content: rgb(196, 196, 197);
40-
--code-block-bg: rgb(46, 46, 51);
41-
--code-bg: rgb(55, 56, 62);
42-
--border: rgb(51, 51, 51);
43-
}
44-
45-
.list {
46-
background: var(--theme);
47-
}
48-
49-
.list:not(.dark)::-webkit-scrollbar-track {
50-
background: 0 0;
51-
}
52-
53-
.list:not(.dark)::-webkit-scrollbar-thumb {
54-
border-color: var(--theme);
55-
}
56-
}
57-
58-
</style>
5931
</noscript>
6032
</head>
6133

62-
<body class="" id="top">
34+
<body class=" dark" id="top">
6335
<script>
64-
if (localStorage.getItem("pref-theme") === "dark") {
65-
document.body.classList.add('dark');
66-
} else if (localStorage.getItem("pref-theme") === "light") {
36+
if (localStorage.getItem("pref-theme") === "light") {
6737
document.body.classList.remove('dark')
68-
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
69-
document.body.classList.add('dark');
7038
}
7139

7240
</script>
@@ -109,6 +77,16 @@
10977
<span class="active">About</span>
11078
</a>
11179
</li>
80+
<li>
81+
<a href="http://localhost:1313/documentation" title="Documentation">
82+
<span>Documentation</span>
83+
</a>
84+
</li>
85+
<li>
86+
<a href="http://localhost:1313/contribute" title="Contribute">
87+
<span>Contribute</span>
88+
</a>
89+
</li>
11290
<li>
11391
<a href="http://localhost:1313/blog" title="Blog">
11492
<span>Blog</span>
@@ -138,7 +116,7 @@ <h1 class="post-title entry-hint-parent">
138116
</svg>
139117
</span>
140118
</h1>
141-
<div class="post-meta"><span title='2025-01-12 11:07:13 +0100 CET'>January 12, 2025</span>
119+
<div class="post-meta"><span title='2025-01-12 11:07:13 +0200 +0200'>January 12, 2025</span>
142120

143121
</div>
144122
</header>

public/blog/blogpost1/index.html

Lines changed: 12 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -27,45 +27,13 @@
2727
}
2828

2929
</style>
30-
<style>
31-
@media (prefers-color-scheme: dark) {
32-
:root {
33-
--theme: rgb(29, 30, 32);
34-
--entry: rgb(46, 46, 51);
35-
--primary: rgb(218, 218, 219);
36-
--secondary: rgb(155, 156, 157);
37-
--tertiary: rgb(65, 66, 68);
38-
--content: rgb(196, 196, 197);
39-
--code-block-bg: rgb(46, 46, 51);
40-
--code-bg: rgb(55, 56, 62);
41-
--border: rgb(51, 51, 51);
42-
}
43-
44-
.list {
45-
background: var(--theme);
46-
}
47-
48-
.list:not(.dark)::-webkit-scrollbar-track {
49-
background: 0 0;
50-
}
51-
52-
.list:not(.dark)::-webkit-scrollbar-thumb {
53-
border-color: var(--theme);
54-
}
55-
}
56-
57-
</style>
5830
</noscript>
5931
</head>
6032

61-
<body class="" id="top">
33+
<body class=" dark" id="top">
6234
<script>
63-
if (localStorage.getItem("pref-theme") === "dark") {
64-
document.body.classList.add('dark');
65-
} else if (localStorage.getItem("pref-theme") === "light") {
35+
if (localStorage.getItem("pref-theme") === "light") {
6636
document.body.classList.remove('dark')
67-
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
68-
document.body.classList.add('dark');
6937
}
7038

7139
</script>
@@ -108,6 +76,16 @@
10876
<span>About</span>
10977
</a>
11078
</li>
79+
<li>
80+
<a href="http://localhost:1313/documentation" title="Documentation">
81+
<span>Documentation</span>
82+
</a>
83+
</li>
84+
<li>
85+
<a href="http://localhost:1313/contribute" title="Contribute">
86+
<span>Contribute</span>
87+
</a>
88+
</li>
11189
<li>
11290
<a href="http://localhost:1313/blog" title="Blog">
11391
<span>Blog</span>

public/blog/index.html

Lines changed: 12 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -28,45 +28,13 @@
2828
}
2929

3030
</style>
31-
<style>
32-
@media (prefers-color-scheme: dark) {
33-
:root {
34-
--theme: rgb(29, 30, 32);
35-
--entry: rgb(46, 46, 51);
36-
--primary: rgb(218, 218, 219);
37-
--secondary: rgb(155, 156, 157);
38-
--tertiary: rgb(65, 66, 68);
39-
--content: rgb(196, 196, 197);
40-
--code-block-bg: rgb(46, 46, 51);
41-
--code-bg: rgb(55, 56, 62);
42-
--border: rgb(51, 51, 51);
43-
}
44-
45-
.list {
46-
background: var(--theme);
47-
}
48-
49-
.list:not(.dark)::-webkit-scrollbar-track {
50-
background: 0 0;
51-
}
52-
53-
.list:not(.dark)::-webkit-scrollbar-thumb {
54-
border-color: var(--theme);
55-
}
56-
}
57-
58-
</style>
5931
</noscript>
6032
</head>
6133

62-
<body class="list" id="top">
34+
<body class="list dark" id="top">
6335
<script>
64-
if (localStorage.getItem("pref-theme") === "dark") {
65-
document.body.classList.add('dark');
66-
} else if (localStorage.getItem("pref-theme") === "light") {
36+
if (localStorage.getItem("pref-theme") === "light") {
6737
document.body.classList.remove('dark')
68-
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
69-
document.body.classList.add('dark');
7038
}
7139

7240
</script>
@@ -109,6 +77,16 @@
10977
<span>About</span>
11078
</a>
11179
</li>
80+
<li>
81+
<a href="http://localhost:1313/documentation" title="Documentation">
82+
<span>Documentation</span>
83+
</a>
84+
</li>
85+
<li>
86+
<a href="http://localhost:1313/contribute" title="Contribute">
87+
<span>Contribute</span>
88+
</a>
89+
</li>
11290
<li>
11391
<a href="http://localhost:1313/blog" title="Blog">
11492
<span class="active">Blog</span>

0 commit comments

Comments
 (0)