+10
.zed/tasks.json
+10
.zed/tasks.json
···
13
13
"shell": "system"
14
14
},
15
15
{
16
+
"label": "dev server - caddy",
17
+
"command": "just caddy",
18
+
"use_new_terminal": true,
19
+
"allow_concurrent_runs": false,
20
+
"reveal": "never",
21
+
"reveal_target": "dock",
22
+
"hide": "never",
23
+
"shell": "system"
24
+
},
25
+
{
16
26
"label": "render to _site",
17
27
"command": "just build",
18
28
"use_new_terminal": true,
+1
flake.nix
+1
flake.nix
+3
justfile
+3
justfile
+5
-3
src/_components/logo.vto
+5
-3
src/_components/logo.vto
···
1
-
<div class="flex flex-row justify-center gap-x-4 content-center">
2
-
<i class="bi bi-exclamation-triangle text-yellow self-center justify-self-end text-4xl"></i>
3
-
<p class="text-text text-xl self-center">a space</p>
1
+
<div class="flex flex-row justify-center gap-x-2 lg:gap-x-4 content-center">
2
+
<i
3
+
class="bi bi-exclamation-triangle text-yellow self-center justify-self-end text-2xl lg:text-4xl"
4
+
></i>
5
+
<p class="text-text text-lg lg:text-xl self-center">a space</p>
4
6
</div>
+1
-1
src/_components/post_card.vto
+1
-1
src/_components/post_card.vto
+4
-3
src/_components/project_card.vto
+4
-3
src/_components/project_card.vto
···
1
-
<li class="bg-surface0 p-4 w-1/2 text-lg rounded-md">
2
-
<p class="text-2xl font-serif mb-2">{{ project.name }}</p>
3
-
<p class="italic">{{ project.description }}</p>
1
+
<li class="bg-surface0 p-4 text-lg rounded-md">
2
+
<h2 class="text-2xl font-serif mb-2">{{ project.name }}</h2>
3
+
<h3 class="italic">{{ project.description }}</h3>
4
4
<p>Techs Used: {{ project.techs }}</p>
5
5
<p>
6
6
Developed Since:
···
8
8
{{ project.start |> date('POST_DATE') }}
9
9
</time></strong>
10
10
</p>
11
+
<p>Status: {{ project.status }}</p>
11
12
<a class="underline text-blue" href="{{ project.link }}">{{ project.link }}</a>
12
13
</li>
+3
src/_data/projects.toml
+3
src/_data/projects.toml
···
4
4
techs = [ "Django", "Python", "Nix", "CSS", "HTML", "Sqlite"]
5
5
link = "https://github.com/pyrox0/vgarchive"
6
6
start = "2024-08-17"
7
+
status = "Pre-Alpha"
7
8
8
9
[[projects]]
9
10
name = "Nix Configuration"
···
11
12
techs = [ "Nix", "Caddy" ]
12
13
link = "https://git.pyrox.dev/pyrox/nix"
13
14
start = "2022-01-28"
15
+
status = "Stable"
14
16
15
17
[[projects]]
16
18
name = "This Blog"
···
18
20
techs = [ "Nix", "HTML", "CSS", "Vento", "JS", "Python", "Markdown"]
19
21
link = "https://git.pyrox.dev/pyrox/new-blog"
20
22
start ="2025-02-09"
23
+
status = "Beta"
+1
-1
src/_includes/layouts/base.vto
+1
-1
src/_includes/layouts/base.vto
+6
-2
src/_includes/layouts/blog-list.vto
+6
-2
src/_includes/layouts/blog-list.vto
···
1
1
{{ layout "layouts/base.vto" }}
2
-
<main class="min-h-screen text-text justify-self-center w-full lg:w-1/2">
2
+
<main class="min-h-screen text-text justify-self-center px-4 lg:px-0 w-full lg:w-1/2">
3
3
<h1 class="text-5xl my-8">Blog</h1>
4
-
<a class="lg:inline float-right -mt-20 mr-1.5" href="/blog.rss" aria-label="Blog RSS Feed">
4
+
<a
5
+
class="lg:inline float-right -mt-20 lg:mr-1.5"
6
+
href="/blog.rss"
7
+
aria-label="Blog RSS Feed"
8
+
>
5
9
<i class="text-5xl si si-rss"></i>
6
10
</a>
7
11
<ul class="mt-8">