Skip to content

Commit 8408223

Browse files
committed
first commit
0 parents  commit 8408223

28 files changed

+1596
-0
lines changed

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "themes/ananke"]
2+
path = themes/ananke
3+
url = https://github.com/theNewDynamic/gohugo-theme-ananke.git
4+
[submodule "themes/PaperMod"]
5+
path = themes/PaperMod
6+
url = https://github.com/adityatelange/hugo-PaperMod.git

.hugo_build.lock

Whitespace-only changes.

archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++

content/post/hello-world.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
+++
2+
date = '2025-01-10T11:09:52+01:00'
3+
draft = true
4+
title = 'Hello World'
5+
+++
6+
7+
# Hello World
8+
9+
This is **bold** text
10+
11+
This is *italics*
12+
13+
## 2nd level
14+
15+
### 3rd level
16+

content/post/i-want-my-tools.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
+++
2+
date = '2025-01-10T11:17:31+01:00'
3+
draft = true
4+
title = 'I Want My Tools'
5+
+++
6+
7+
8+
Hey I love building things but my tools are missing. **Do you know where they are?**

hugo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
baseURL = 'https://example.org/'
2+
languageCode = 'en-us'
3+
title = 'Bob the builder loves to build'
4+
theme = 'PaperMod'

public/404.html

Lines changed: 179 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="auto">
3+
4+
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script><meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7+
<meta name="robots" content="noindex, nofollow">
8+
<title>404 Page not found | Bob the builder loves to build</title>
9+
<meta name="keywords" content="">
10+
<meta name="description" content="">
11+
<meta name="author" content="">
12+
<link rel="canonical" href="http://localhost:1313/404.html">
13+
<link crossorigin="anonymous" href="/assets/css/stylesheet.9de45e225101e4f99701d2b68fc6b8a1ef6027928be6391fa15bf7f56326c909.css" integrity="sha256-neReIlEB5PmXAdK2j8a4oe9gJ5KL5jkfoVv39WMmyQk=" rel="preload stylesheet" as="style">
14+
<link rel="icon" href="http://localhost:1313/favicon.ico">
15+
<link rel="icon" type="image/png" sizes="16x16" href="http://localhost:1313/favicon-16x16.png">
16+
<link rel="icon" type="image/png" sizes="32x32" href="http://localhost:1313/favicon-32x32.png">
17+
<link rel="apple-touch-icon" href="http://localhost:1313/apple-touch-icon.png">
18+
<link rel="mask-icon" href="http://localhost:1313/safari-pinned-tab.svg">
19+
<meta name="theme-color" content="#2e2e33">
20+
<meta name="msapplication-TileColor" content="#2e2e33">
21+
<link rel="alternate" hreflang="en" href="http://localhost:1313/404.html">
22+
<noscript>
23+
<style>
24+
#theme-toggle,
25+
.top-link {
26+
display: none;
27+
}
28+
29+
</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>
58+
</noscript>
59+
</head>
60+
61+
<body class="list" id="top">
62+
<script>
63+
if (localStorage.getItem("pref-theme") === "dark") {
64+
document.body.classList.add('dark');
65+
} else if (localStorage.getItem("pref-theme") === "light") {
66+
document.body.classList.remove('dark')
67+
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
68+
document.body.classList.add('dark');
69+
}
70+
71+
</script>
72+
73+
<header class="header">
74+
<nav class="nav">
75+
<div class="logo">
76+
<a href="http://localhost:1313/" accesskey="h" title="Bob the builder loves to build (Alt + H)">Bob the builder loves to build</a>
77+
<div class="logo-switches">
78+
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
79+
<svg id="moon" xmlns="http://www.w3.org/2000/svg" width="24" height="18" viewBox="0 0 24 24"
80+
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
81+
stroke-linejoin="round">
82+
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
83+
</svg>
84+
<svg id="sun" xmlns="http://www.w3.org/2000/svg" width="24" height="18" viewBox="0 0 24 24"
85+
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
86+
stroke-linejoin="round">
87+
<circle cx="12" cy="12" r="5"></circle>
88+
<line x1="12" y1="1" x2="12" y2="3"></line>
89+
<line x1="12" y1="21" x2="12" y2="23"></line>
90+
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
91+
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
92+
<line x1="1" y1="12" x2="3" y2="12"></line>
93+
<line x1="21" y1="12" x2="23" y2="12"></line>
94+
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
95+
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
96+
</svg>
97+
</button>
98+
</div>
99+
</div>
100+
<ul id="menu">
101+
</ul>
102+
</nav>
103+
</header>
104+
<main class="main">
105+
<div class="not-found">404</div>
106+
</main>
107+
108+
<footer class="footer">
109+
<span>&copy; 2025 <a href="http://localhost:1313/">Bob the builder loves to build</a></span> ·
110+
111+
<span>
112+
Powered by
113+
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
114+
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a>
115+
</span>
116+
</footer>
117+
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)" class="top-link" id="top-link" accesskey="g">
118+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
119+
<path d="M12 6H0l6-6z" />
120+
</svg>
121+
</a>
122+
123+
<script>
124+
let menu = document.getElementById('menu')
125+
if (menu) {
126+
menu.scrollLeft = localStorage.getItem("menu-scroll-position");
127+
menu.onscroll = function () {
128+
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
129+
}
130+
}
131+
132+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
133+
anchor.addEventListener("click", function (e) {
134+
e.preventDefault();
135+
var id = this.getAttribute("href").substr(1);
136+
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
137+
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
138+
behavior: "smooth"
139+
});
140+
} else {
141+
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
142+
}
143+
if (id === "top") {
144+
history.replaceState(null, null, " ");
145+
} else {
146+
history.pushState(null, null, `#${id}`);
147+
}
148+
});
149+
});
150+
151+
</script>
152+
<script>
153+
var mybutton = document.getElementById("top-link");
154+
window.onscroll = function () {
155+
if (document.body.scrollTop > 800 || document.documentElement.scrollTop > 800) {
156+
mybutton.style.visibility = "visible";
157+
mybutton.style.opacity = "1";
158+
} else {
159+
mybutton.style.visibility = "hidden";
160+
mybutton.style.opacity = "0";
161+
}
162+
};
163+
164+
</script>
165+
<script>
166+
document.getElementById("theme-toggle").addEventListener("click", () => {
167+
if (document.body.className.includes("dark")) {
168+
document.body.classList.remove('dark');
169+
localStorage.setItem("pref-theme", 'light');
170+
} else {
171+
document.body.classList.add('dark');
172+
localStorage.setItem("pref-theme", 'dark');
173+
}
174+
})
175+
176+
</script>
177+
</body>
178+
179+
</html>

public/ananke/css/main.css.map

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/ananke/css/main.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/assets/css/stylesheet.9de45e225101e4f99701d2b68fc6b8a1ef6027928be6391fa15bf7f56326c909.css

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)