Skip to content

Commit 974e318

Browse files
committed
feat(site): initialize Hugo project with Book theme and docs navigation
1 parent c7bc5b4 commit 974e318

23 files changed

Lines changed: 178 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
public/
2+
resources/_gen/
3+
.hugo_build.lock
4+
.claude/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/hugo-book"]
2+
path = themes/hugo-book
3+
url = https://github.com/alex-shpak/hugo-book

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/docs/_index.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: Documentation
3+
weight: 1
4+
bookToc: false
5+
---
6+
7+
# Zerfoo Documentation
8+
9+
Welcome to the Zerfoo documentation. Zerfoo is a production-grade ML inference and training framework written entirely in Go.
10+
11+
## Getting Started
12+
13+
New to Zerfoo? Start here:
14+
- [Installation](/docs/getting-started/installation/)
15+
- [Quick Start](/docs/getting-started/quickstart/)
16+
- [Your First Inference](/docs/getting-started/first-inference/)
17+
18+
## Sections
19+
20+
- **[Getting Started](/docs/getting-started/)** - Install and run your first model
21+
- **[Tutorials](/docs/tutorials/)** - Step-by-step learning guides
22+
- **[API Reference](/docs/api/)** - Detailed API documentation
23+
- **[Cookbooks](/docs/cookbooks/)** - Ready-to-use code recipes
24+
- **[Architecture](/docs/architecture/)** - How Zerfoo works under the hood
25+
- **[Deployment](/docs/deployment/)** - Production and enterprise deployment
26+
- **[zonnx](/docs/zonnx/)** - ONNX and SafeTensors to GGUF conversion
27+
- **[Ecosystem](/docs/ecosystem/)** - ztensor, ztoken, float16, float8
28+
- **[Contributing](/docs/contributing/)** - How to contribute to Zerfoo
29+
- **[Reference](/docs/reference/)** - Benchmarks, API stability, migration guides

content/docs/api/_index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: API Reference
3+
weight: 3
4+
bookCollapseSection: true
5+
---
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: Architecture
3+
weight: 5
4+
bookCollapseSection: true
5+
---

content/docs/blog/_index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: Blog
3+
weight: 11
4+
bookCollapseSection: true
5+
---
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: Contributing
3+
weight: 9
4+
bookCollapseSection: true
5+
---

content/docs/cookbooks/_index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: Cookbooks
3+
weight: 4
4+
bookCollapseSection: true
5+
---

content/docs/deployment/_index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: Deployment
3+
weight: 6
4+
bookCollapseSection: true
5+
---

0 commit comments

Comments
 (0)