Skip to content

Commit 6e4614a

Browse files
committed
initial
0 parents  commit 6e4614a

53 files changed

Lines changed: 3820 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.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+
+++

assets/jsconfig.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"paths": {
5+
"*": [
6+
"../themes/til/assets/*"
7+
]
8+
}
9+
}
10+
}

hugo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
baseURL = 'https://example.org/'
2+
languageCode = 'en-us'
3+
title = 'TIL of Raimbek'
4+
5+
theme = "til"

mise.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[tools]
2+
go = "1.24"

public/404.html

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
<!doctype html>
2+
<html
3+
lang="en-us"
4+
dir="ltr"
5+
>
6+
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
7+
<meta charset="utf-8" />
8+
<meta name="language" content="en" />
9+
<meta name="viewport" content="width=device-width" />
10+
<title>
11+
404 Page not found | TIL of Raimbek
12+
</title>
13+
<meta name="robots" content="noindex" />
14+
<meta property="og:url" content="http://localhost:1313/404.html">
15+
<meta property="og:site_name" content="TIL of Raimbek">
16+
<meta property="og:title" content="404 Page not found">
17+
<meta property="og:locale" content="en_us">
18+
<meta property="og:type" content="website">
19+
20+
21+
<meta itemprop="name" content="404 Page not found">
22+
23+
<meta name="twitter:card" content="summary">
24+
<meta name="twitter:title" content="404 Page not found">
25+
26+
<link rel="canonical" href="http://localhost:1313/404.html" />
27+
28+
<link rel="stylesheet" href="/css/index.css" />
29+
30+
31+
<script src="/js/main.js" defer></script>
32+
33+
34+
<script type="application/ld+json">
35+
{
36+
"@context": "https://schema.org",
37+
"@type": "WebPage",
38+
"description": "",
39+
"headline": "404 Page Not Found"
40+
}
41+
</script>
42+
43+
44+
</head>
45+
<body>
46+
<div class="container mx-auto flex max-w-prose flex-col space-y-10 p-4 md:p-6">
47+
<header class="flex flex-row items-center justify-between">
48+
<div>
49+
<a id="skip-nav" class="sr-only" href="#maincontent">Skip to main content</a>
50+
<a class="font-semibold" href="/">TIL of Raimbek</a>
51+
</div>
52+
53+
<nav>
54+
<ul class="flex flex-row items-center justify-end space-x-4">
55+
<li>
56+
<a>Notes</a
57+
>
58+
</li>
59+
<li>
60+
<a>Posts</a
61+
>
62+
</li>
63+
</ul>
64+
</nav>
65+
66+
67+
</header>
68+
<main class="prose prose-slate relative md:prose-lg prose-h1:text-[2em]" id="maincontent">
69+
70+
<article>
71+
<h1>Page not found</h1>
72+
73+
<p class="lead">It seems you've stumbled upon a page that doesn't exist on this website.</p>
74+
75+
<p class="font-bold">Here are a few things you can do:</p>
76+
77+
<ul>
78+
<li>Return to the <a href="/">home page</a>.</li>
79+
<li>
80+
<a href="https://web.archive.org/web/*/http//localhost1313/404.html"
81+
>See if the Internet Archive has a copy</a
82+
>
83+
if you believe this page once existed.
84+
</li>
85+
</ul>
86+
</article>
87+
88+
</main>
89+
<footer class="mt-20 border-t border-neutral-100 pt-2 text-xs">
90+
<section class="items-top flex flex-row justify-between opacity-70">
91+
<div class="flex flex-col space-y-2">
92+
93+
</div>
94+
<div>
95+
<a
96+
href="https://github.com/michenriksen/hugo-theme-til"
97+
title="Today I Learned &#8212; A Hugo theme by Michael Henriksen"
98+
data-theme-version="0.6.0"
99+
>theme: til</a
100+
>
101+
</div>
102+
</section>
103+
104+
</footer>
105+
</div>
106+
107+
</body>
108+
</html>

public/categories/index.html

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<!doctype html>
2+
<html
3+
lang="en-us"
4+
dir="ltr"
5+
>
6+
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
7+
<meta charset="utf-8" />
8+
<meta name="language" content="en" />
9+
<meta name="viewport" content="width=device-width" />
10+
<title>
11+
Categories | TIL of Raimbek
12+
</title>
13+
<meta property="og:url" content="http://localhost:1313/categories/">
14+
<meta property="og:site_name" content="TIL of Raimbek">
15+
<meta property="og:title" content="Categories">
16+
<meta property="og:locale" content="en_us">
17+
<meta property="og:type" content="website">
18+
19+
20+
<meta itemprop="name" content="Categories">
21+
22+
<meta name="twitter:card" content="summary">
23+
<meta name="twitter:title" content="Categories">
24+
25+
<link rel="canonical" href="http://localhost:1313/categories/" /><link rel="alternate" type="application/rss&#43;xml" href="http://localhost:1313/categories/index.xml" />
26+
27+
<link rel="stylesheet" href="/css/index.css" />
28+
29+
30+
<script src="/js/main.js" defer></script>
31+
32+
33+
<script type="application/ld+json">
34+
{
35+
"@context": "https://schema.org",
36+
"@type": "WebPage",
37+
"description": "",
38+
"headline": "Categories"
39+
}
40+
</script>
41+
42+
43+
</head>
44+
<body>
45+
<div class="container mx-auto flex max-w-prose flex-col space-y-10 p-4 md:p-6">
46+
<header class="flex flex-row items-center justify-between">
47+
<div>
48+
<a id="skip-nav" class="sr-only" href="#maincontent">Skip to main content</a>
49+
<a class="font-semibold" href="/">TIL of Raimbek</a>
50+
</div>
51+
52+
<nav>
53+
<ul class="flex flex-row items-center justify-end space-x-4">
54+
<li>
55+
<a>Notes</a
56+
>
57+
</li>
58+
<li>
59+
<a>Posts</a
60+
>
61+
</li>
62+
</ul>
63+
</nav>
64+
65+
66+
</header>
67+
<main class="prose prose-slate relative md:prose-lg prose-h1:text-[2em]" id="maincontent">
68+
69+
<div class="flex flex-col space-y-6">
70+
</div>
71+
72+
</main>
73+
<footer class="mt-20 border-t border-neutral-100 pt-2 text-xs">
74+
<section class="items-top flex flex-row justify-between opacity-70">
75+
<div class="flex flex-col space-y-2">
76+
77+
</div>
78+
<div>
79+
<a
80+
href="https://github.com/michenriksen/hugo-theme-til"
81+
title="Today I Learned &#8212; A Hugo theme by Michael Henriksen"
82+
data-theme-version="0.6.0"
83+
>theme: til</a
84+
>
85+
</div>
86+
</section>
87+
88+
</footer>
89+
</div>
90+
91+
</body>
92+
</html>

public/categories/index.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
3+
<channel>
4+
<title>Categories on TIL of Raimbek</title>
5+
<link>http://localhost:1313/categories/</link>
6+
<description>Recent content in Categories on TIL of Raimbek</description>
7+
<generator>Hugo</generator>
8+
<language>en-us</language>
9+
<atom:link href="http://localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" />
10+
</channel>
11+
</rss>

0 commit comments

Comments
 (0)