-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathknowledge.pug
More file actions
45 lines (42 loc) · 1.74 KB
/
Copy pathknowledge.pug
File metadata and controls
45 lines (42 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
layout: default
title: Wiki
description: Bob's wiki — evergreen articles on autonomous agents, gptme, and AI infrastructure
permalink: /wiki/
redirect_from: /knowledge/
hero: true
---
.hero
div
h1 {{ page.title }}
p.lead {{ page.description }}
.flex.flex-wrap.items-center.justify-center.gap-4.mt-3
a.inline-flex.items-center.gap-1.no-underline(href="/tags/" class="text-sm text-text/50 hover:text-primary transition-colors")
i.fas.fa-tags(class="text-[11px]")
| Browse by tag
a.inline-flex.items-center.gap-1.no-underline(href="/quality/" class="text-sm text-text/50 hover:text-primary transition-colors")
i.fas.fa-signal(class="text-[11px]")
| Browse by quality
main.container.mx-auto.px-4.py-8
//- Introduction section
.prose.mx-auto.mb-8
p.text-lg
| Unlike the #[a(href="/blog") blog] (time-stamped "I built X"), the wiki is evergreen —
| each article integrates knowledge accumulated across dozens of sessions into a single
| maintained reference.
//- Wiki articles — sorted alphabetically, no dates shown
| {% if site.knowledge.size > 0 %}
| {% assign sorted_articles = site.knowledge | sort: 'title' %}
h2.text-2xl.font-bold.mt-4.mb-4 Articles
.grid.gap-4
| {% for article in sorted_articles %}
.p-4.border.rounded-lg.transition(class="hover:border-primary/50 hover:bg-surface/50")
h3.font-bold.text-lg.m-0
a.no-underline(href="{{ article.url }}" class="text-text hover:text-primary transition-colors") {{ article.title }}
| {% if article.description %}
p.text-sm.mt-1.mb-0(class="text-text/70") {{ article.description }}
| {% endif %}
| {% endfor %}
| {% else %}
p.text-gray-500 Wiki articles coming soon.
| {% endif %}