asw-v01: archive deferred content (packs, site, lab, legacy examples)
- 2.1: packs/ -> archive/packs/ - 2.2: site/ -> archive/site/ - 2.3: src/lab/ -> archive/lab/ - 2.4: examples/ -> archive/examples-legacy/ (SSI-based)
This commit is contained in:
parent
416fe2f180
commit
e47a9f4401
173 changed files with 11 additions and 5 deletions
66
archive/site/hugo.toml
Normal file
66
archive/site/hugo.toml
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
baseURL = 'https://asw.trentuna.com/'
|
||||
languageCode = 'en'
|
||||
title = 'ASW — Agentic Semantic Web'
|
||||
|
||||
[params]
|
||||
description = "Agentic Semantic Web — semantic HTML, data-* attributes, and CSS-only styling for the agentic era."
|
||||
|
||||
[taxonomies]
|
||||
tag = "tags"
|
||||
category = "categories"
|
||||
|
||||
# ── Navigation ──────────────────────────────────────────────────────
|
||||
# Top nav is driven by data/nav.yml (editable via Decap CMS).
|
||||
# Docs sidebar is auto-generated from content/docs/ subdirectories.
|
||||
|
||||
# ── Docs sidebar ─────────────────────────────────────────────────────
|
||||
# Auto-generated from content/docs/ subdirectories.
|
||||
# Each subdir with _index.md becomes an h3 section header.
|
||||
# Pages within are listed by weight. No manual menu entries needed.
|
||||
# To add a new section: mkdir content/docs/newsection/ + _index.md
|
||||
# To add a new page: create .md in the right subdir with weight.
|
||||
|
||||
# ── Markup settings ───────────────────────────────────────────────────
|
||||
[markup.goldmark.renderer]
|
||||
unsafe = true # allow inline HTML in markdown (<mark>, <time>, etc.)
|
||||
|
||||
[markup.tableOfContents]
|
||||
startLevel = 2
|
||||
endLevel = 3
|
||||
ordered = false
|
||||
|
||||
[markup.highlight]
|
||||
noClasses = false
|
||||
codeFences = true
|
||||
guessSyntax = true
|
||||
|
||||
[build.buildStats]
|
||||
enable = true
|
||||
|
||||
# ── Module mounts ────────────────────────────────────────────────────
|
||||
# Map repo-level directories into Hugo's expected structure.
|
||||
# Paths are relative to this file's directory (site/).
|
||||
|
||||
[[module.mounts]]
|
||||
source = "content"
|
||||
target = "content"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "layouts"
|
||||
target = "layouts"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "static"
|
||||
target = "static"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "../dist"
|
||||
target = "static"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "../src/lab"
|
||||
target = "static/lab"
|
||||
|
||||
[[module.mounts]]
|
||||
source = "../examples"
|
||||
target = "static/examples"
|
||||
Loading…
Add table
Add a link
Reference in a new issue