Skip to content

Commit bbb55a7

Browse files
committed
More basic layout setup
1 parent d601409 commit bbb55a7

39 files changed

Lines changed: 3756 additions & 72 deletions

File tree

config/_default/menus/menu.en.toml

Lines changed: 20 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -3,50 +3,42 @@
33

44
[[main]]
55
name = "Home"
6-
url = ""
6+
url = "home/"
77
weight = -110
88

99
[[main]]
10-
name = "Spec Coding Tooling"
11-
identifier = "Spec Coding Tooling"
12-
url = "post/rich-content/"
10+
name = "Spec Code Tools"
11+
identifier = "Spec Code Tools"
12+
# url = "post/rich-content/"
1313
weight = -109
1414
[[main]]
15-
parent = "Spec Coding Tooling"
15+
parent = "Spec Code Tools"
16+
name = "All"
17+
weight = 5
18+
[[main]]
19+
parent = "Spec Code Tools"
20+
name = "Frameworkless"
21+
weight = 10
22+
[[main]]
23+
parent = "Spec Code Tools"
1624
name = "spec-kit"
17-
url = "post/rich-content/"
25+
url = "post/spec-code-tools/spec-kit/"
26+
weight = 20
1827
[[main]]
19-
parent = "Spec Coding Tooling"
28+
parent = "Spec Code Tools"
2029
name = "Kiro"
21-
url = "post/rich-content/"
30+
url = "spec-code-tools/kiro/"
2231
[[main]]
23-
parent = "Spec Coding Tooling"
32+
parent = "Spec Code Tools"
2433
name = "openspec"
25-
url = "post/rich-content/"
34+
url = "spec-code-tools/openspec/"
2635

2736
[[main]]
2837
name = "Claude Code"
2938
identifier = "Claude Code"
30-
url = "post/claude-code/"
39+
url = "claude-code/"
3140
weight = -108
3241

33-
34-
35-
# Submenus are done this way: parent -> identifier
36-
# [[main]]
37-
# name = "Links"
38-
# identifier = "Links"
39-
# weight = -108
40-
# [[main]]
41-
# parent = "Links"
42-
# name = "LinkedIn"
43-
# url = "https://www.linkedin.com/"
44-
# [[main]]
45-
# parent = "Links"
46-
# name = "X"
47-
# url = "https://x.com/"
48-
49-
5042
[[main]]
5143
name = "Resources"
5244
url = "resources/"

content/images/footer-icon.png

2.8 KB
Loading
-1.66 KB
Loading
10.9 KB
Binary file not shown.
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
title: "Getting Started with Spec"
3+
date: "2025-10-12"
4+
linktitle: spec-start
5+
slug: "getting-started-with-spec"
6+
thumbnail: "images/terminal-refactor-80x12.png"
7+
categories:
8+
- "Spec Coding"
9+
tags:
10+
- Spec Coding
11+
- Refactor
12+
---
13+
14+
15+
# Test Page Spec
16+
17+
lorem ipsum dolor sit amet consectetur adipiscing elit
18+
19+
> Some initial notes I have about this and about that
20+
> ...
21+
> yada yada yada
22+
>
23+
24+
Now is the winter of our discount tent
25+
26+
```yaml
27+
apiVersion: rbac.authorization.k8s.io/v1
28+
kind: ClusterRole
29+
metadata:
30+
labels:
31+
app.kubernetes.io/component: background-controller
32+
app.kubernetes.io/instance: kyverno
33+
app.kubernetes.io/part-of: kyverno
34+
name: kyverno:update-deployments
35+
rules:
36+
- apiGroups:
37+
- apps
38+
resources:
39+
- deployments
40+
verbs:
41+
- update
42+
---
43+
apiVersion: rbac.authorization.k8s.io/v1
44+
kind: ClusterRole
45+
metadata:
46+
labels:
47+
app.kubernetes.io/component: cleanup-controller
48+
app.kubernetes.io/instance: kyverno
49+
app.kubernetes.io/part-of: kyverno
50+
name: kyverno:clean-violating-resources
51+
rules:
52+
- apiGroups:
53+
- apps
54+
resources:
55+
- deployments
56+
verbs:
57+
- get
58+
- watch
59+
- list
60+
- delete
61+
```

public/404.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,19 +76,21 @@
7676

7777

7878
<div class="nav_parent">
79-
<a href="http://localhost:1313/" class="nav_item" title="Home">Home </a>
79+
<a href="http://localhost:1313/home/" class="nav_item" title="Home">Home </a>
8080
</div>
8181
<div class="nav_parent">
82-
<a href="http://localhost:1313/post/rich-content/" class="nav_item" title="Spec Coding Tooling">Spec Coding Tooling <img src='http://localhost:1313/icons/caret-icon.svg' alt="icon" class="nav_icon"></a>
82+
<a href="http://localhost:1313/" class="nav_item" title="Spec Code Tools">Spec Code Tools <img src='http://localhost:1313/icons/caret-icon.svg' alt="icon" class="nav_icon"></a>
8383
<div class="nav_sub">
8484
<span class="nav_child"></span>
85-
<a href="http://localhost:1313/post/rich-content/" class="nav_child nav_item" title="Kiro">Kiro</a>
86-
<a href="http://localhost:1313/post/rich-content/" class="nav_child nav_item" title="openspec">openspec</a>
87-
<a href="http://localhost:1313/post/rich-content/" class="nav_child nav_item" title="spec-kit">spec-kit</a>
85+
<a href="http://localhost:1313/" class="nav_child nav_item" title="All">All</a>
86+
<a href="http://localhost:1313/" class="nav_child nav_item" title="Frameworkless">Frameworkless</a>
87+
<a href="http://localhost:1313/post/spec-code-tools/spec-kit/" class="nav_child nav_item" title="spec-kit">spec-kit</a>
88+
<a href="http://localhost:1313/spec-code-tools/kiro/" class="nav_child nav_item" title="Kiro">Kiro</a>
89+
<a href="http://localhost:1313/spec-code-tools/openspec/" class="nav_child nav_item" title="openspec">openspec</a>
8890
</div>
8991
</div>
9092
<div class="nav_parent">
91-
<a href="http://localhost:1313/post/claude-code/" class="nav_item" title="Claude Code">Claude Code </a>
93+
<a href="http://localhost:1313/claude-code/" class="nav_item" title="Claude Code">Claude Code </a>
9294
</div>
9395
<div class="nav_parent">
9496
<a href="http://localhost:1313/resources/" class="nav_item" title="Resources">Resources </a>

public/authors/index.html

Lines changed: 35 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,21 @@
7777

7878

7979
<div class="nav_parent">
80-
<a href="http://localhost:1313/" class="nav_item" title="Home">Home </a>
80+
<a href="http://localhost:1313/home/" class="nav_item" title="Home">Home </a>
8181
</div>
8282
<div class="nav_parent">
83-
<a href="http://localhost:1313/post/rich-content/" class="nav_item" title="Spec Coding Tooling">Spec Coding Tooling <img src='http://localhost:1313/icons/caret-icon.svg' alt="icon" class="nav_icon"></a>
83+
<a href="http://localhost:1313/" class="nav_item" title="Spec Code Tools">Spec Code Tools <img src='http://localhost:1313/icons/caret-icon.svg' alt="icon" class="nav_icon"></a>
8484
<div class="nav_sub">
8585
<span class="nav_child"></span>
86-
<a href="http://localhost:1313/post/rich-content/" class="nav_child nav_item" title="Kiro">Kiro</a>
87-
<a href="http://localhost:1313/post/rich-content/" class="nav_child nav_item" title="openspec">openspec</a>
88-
<a href="http://localhost:1313/post/rich-content/" class="nav_child nav_item" title="spec-kit">spec-kit</a>
86+
<a href="http://localhost:1313/" class="nav_child nav_item" title="All">All</a>
87+
<a href="http://localhost:1313/" class="nav_child nav_item" title="Frameworkless">Frameworkless</a>
88+
<a href="http://localhost:1313/post/spec-code-tools/spec-kit/" class="nav_child nav_item" title="spec-kit">spec-kit</a>
89+
<a href="http://localhost:1313/spec-code-tools/kiro/" class="nav_child nav_item" title="Kiro">Kiro</a>
90+
<a href="http://localhost:1313/spec-code-tools/openspec/" class="nav_child nav_item" title="openspec">openspec</a>
8991
</div>
9092
</div>
9193
<div class="nav_parent">
92-
<a href="http://localhost:1313/post/claude-code/" class="nav_item" title="Claude Code">Claude Code </a>
94+
<a href="http://localhost:1313/claude-code/" class="nav_item" title="Claude Code">Claude Code </a>
9395
</div>
9496
<div class="nav_parent">
9597
<a href="http://localhost:1313/resources/" class="nav_item" title="Resources">Resources </a>
@@ -186,6 +188,33 @@ <h2>Tony Kay</h2>
186188
<h2 class="mt-4">Recent Posts</h2>
187189
<ul class="flex-column">
188190
</ul>
191+
<div>
192+
<h2 class="mt-4 taxonomy" id="categories-section">Categories</h2>
193+
<nav class="tags_nav">
194+
<a href='http://localhost:1313/categories/spec-coding/' class="post_tag button button_translucent" title="spec coding">
195+
SPEC CODING
196+
<span class="button_tally">1</span>
197+
</a>
198+
199+
200+
</nav>
201+
</div>
202+
<div>
203+
<h2 class="mt-4 taxonomy" id="tags-section">Tags</h2>
204+
<nav class="tags_nav">
205+
<a href='http://localhost:1313/tags/refactor/' class="post_tag button button_translucent" title="refactor">
206+
REFACTOR
207+
<span class="button_tally">1</span>
208+
</a>
209+
210+
<a href='http://localhost:1313/tags/spec-coding/' class="post_tag button button_translucent" title="spec coding">
211+
SPEC CODING
212+
<span class="button_tally">1</span>
213+
</a>
214+
215+
216+
</nav>
217+
</div>
189218
</section>
190219
</aside>
191220

public/categories/index.html

Lines changed: 100 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,21 @@
7777

7878

7979
<div class="nav_parent">
80-
<a href="http://localhost:1313/" class="nav_item" title="Home">Home </a>
80+
<a href="http://localhost:1313/home/" class="nav_item" title="Home">Home </a>
8181
</div>
8282
<div class="nav_parent">
83-
<a href="http://localhost:1313/post/rich-content/" class="nav_item" title="Spec Coding Tooling">Spec Coding Tooling <img src='http://localhost:1313/icons/caret-icon.svg' alt="icon" class="nav_icon"></a>
83+
<a href="http://localhost:1313/" class="nav_item" title="Spec Code Tools">Spec Code Tools <img src='http://localhost:1313/icons/caret-icon.svg' alt="icon" class="nav_icon"></a>
8484
<div class="nav_sub">
8585
<span class="nav_child"></span>
86-
<a href="http://localhost:1313/post/rich-content/" class="nav_child nav_item" title="Kiro">Kiro</a>
87-
<a href="http://localhost:1313/post/rich-content/" class="nav_child nav_item" title="openspec">openspec</a>
88-
<a href="http://localhost:1313/post/rich-content/" class="nav_child nav_item" title="spec-kit">spec-kit</a>
86+
<a href="http://localhost:1313/" class="nav_child nav_item" title="All">All</a>
87+
<a href="http://localhost:1313/" class="nav_child nav_item" title="Frameworkless">Frameworkless</a>
88+
<a href="http://localhost:1313/post/spec-code-tools/spec-kit/" class="nav_child nav_item" title="spec-kit">spec-kit</a>
89+
<a href="http://localhost:1313/spec-code-tools/kiro/" class="nav_child nav_item" title="Kiro">Kiro</a>
90+
<a href="http://localhost:1313/spec-code-tools/openspec/" class="nav_child nav_item" title="openspec">openspec</a>
8991
</div>
9092
</div>
9193
<div class="nav_parent">
92-
<a href="http://localhost:1313/post/claude-code/" class="nav_item" title="Claude Code">Claude Code </a>
94+
<a href="http://localhost:1313/claude-code/" class="nav_item" title="Claude Code">Claude Code </a>
9395
</div>
9496
<div class="nav_parent">
9597
<a href="http://localhost:1313/resources/" class="nav_item" title="Resources">Resources </a>
@@ -152,6 +154,71 @@
152154
<div class="grid-inverse wrap content">
153155
<div>
154156
<ul class="posts" id="posts">
157+
<li class="post_item">
158+
<div class="excerpt">
159+
<div class="excerpt_header">
160+
<h3 class="post_link">
161+
<a href="http://localhost:1313/categories/spec-coding/" title="Spec Coding">Spec Coding</a>
162+
</h3>
163+
164+
<div class="post_meta">
165+
<span><svg class="icon">
166+
<title>calendar</title>
167+
<use xlink:href="#calendar"></use>
168+
</svg>
169+
</span>
170+
<span class="post_date">
171+
Oct 12, 2025
172+
</span>
173+
<span class="post_time"> · 0 min read</span>
174+
<span class="page_only">&nbsp;·
175+
<div class="post_share">
176+
Share on:
177+
<a href="https://twitter.com/intent/tweet?text=Spec%20Coding&url=http%3a%2f%2flocalhost%3a1313%2fcategories%2fspec-coding%2f&tw_p=tweetbutton" class="twitter" title="Share on Twitter" target="_blank" rel="nofollow">
178+
<svg class="icon">
179+
<title>twitter</title>
180+
<use xlink:href="#twitter"></use>
181+
</svg>
182+
183+
</a>
184+
<a href="https://www.facebook.com/sharer.php?u=http%3a%2f%2flocalhost%3a1313%2fcategories%2fspec-coding%2f&t=Spec%20Coding" class="facebook" title="Share on Facebook" target="_blank" rel="nofollow">
185+
<svg class="icon">
186+
<title>facebook</title>
187+
<use xlink:href="#facebook"></use>
188+
</svg>
189+
190+
</a>
191+
<a href="#linkedinshare" id = "linkedinshare" class="linkedin" title="Share on LinkedIn" rel="nofollow">
192+
<svg class="icon">
193+
<title>linkedin</title>
194+
<use xlink:href="#linkedin"></use>
195+
</svg>
196+
197+
</a>
198+
<a href="http://localhost:1313/categories/spec-coding/" title="Copy Link" class="link link_yank">
199+
<svg class="icon">
200+
<title>copy</title>
201+
<use xlink:href="#copy"></use>
202+
</svg>
203+
204+
</a>
205+
</div>
206+
</span>
207+
</div>
208+
209+
</div>
210+
<div class="excerpt_footer">
211+
<div class="pale">
212+
213+
<p></p>
214+
215+
<br>
216+
<a href="http://localhost:1313/categories/spec-coding/" title="Read More" class="excerpt_more button">Read More</a>
217+
</div>
218+
</div>
219+
</div>
220+
</li>
221+
155222
<li>
156223
</li>
157224
</ul>
@@ -186,6 +253,33 @@ <h2>Tony Kay</h2>
186253
<h2 class="mt-4">Recent Posts</h2>
187254
<ul class="flex-column">
188255
</ul>
256+
<div>
257+
<h2 class="mt-4 taxonomy" id="categories-section">Categories</h2>
258+
<nav class="tags_nav">
259+
<a href='http://localhost:1313/categories/spec-coding/' class="post_tag button button_translucent" title="spec coding">
260+
SPEC CODING
261+
<span class="button_tally">1</span>
262+
</a>
263+
264+
265+
</nav>
266+
</div>
267+
<div>
268+
<h2 class="mt-4 taxonomy" id="tags-section">Tags</h2>
269+
<nav class="tags_nav">
270+
<a href='http://localhost:1313/tags/refactor/' class="post_tag button button_translucent" title="refactor">
271+
REFACTOR
272+
<span class="button_tally">1</span>
273+
</a>
274+
275+
<a href='http://localhost:1313/tags/spec-coding/' class="post_tag button button_translucent" title="spec coding">
276+
SPEC CODING
277+
<span class="button_tally">1</span>
278+
</a>
279+
280+
281+
</nav>
282+
</div>
189283
</section>
190284
</aside>
191285

public/categories/index.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<description>Recent content in Categories on Spec Coding, Vibe Coding, Agentic AI driven Software Development</description>
77
<generator>Hugo -- gohugo.io</generator>
88
<language>en</language>
9-
<copyright>Copyright © 2025, Tony Kay and the Hugo Authors; all rights reserved.</copyright><atom:link href="http://localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" />
9+
<copyright>Copyright © 2025, Tony Kay and the Hugo Authors; all rights reserved.</copyright>
10+
<lastBuildDate>Sun, 12 Oct 2025 00:00:00 +0000</lastBuildDate><atom:link href="http://localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" />
1011
</channel>
1112
</rss>

0 commit comments

Comments
 (0)