micro--go-micro
3f40028a7f
Extract the nav and footer link lists into _includes/nav-links.html and _includes/footer-links.html, and the full marketing nav/footer into _includes/marketing-nav.html and _includes/marketing-footer.html. - index.html and support.html now pull their nav/footer from the shared marketing includes (and gain Liquid front matter so includes resolve). - The docs and blog layouts pull the same link lists, so a nav/footer link lives in exactly one place site-wide. This also adds the missing Support link to the blog nav and fixes the blog footer's Support link (it still pointed at the question template). - Active nav state is driven by a per-page nav_active flag. Verified with a local jekyll build: landing, support, docs, and blog pages all render the shared nav/footer correctly. Co-authored-by: Claude <noreply@anthropic.com>
70 行
1.0 KiB
Plaintext
70 行
1.0 KiB
Plaintext
# Develop tools
|
|
/.idea/
|
|
/.trunk
|
|
|
|
# VS Code workspace files (keep settings for consistency)
|
|
/.vscode/*
|
|
!/.vscode/settings.json
|
|
|
|
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Folders
|
|
_obj
|
|
_test
|
|
_build
|
|
|
|
# Architecture specific extensions/prefixes
|
|
*.[568vq]
|
|
[568vq].out
|
|
|
|
*.cgo1.go
|
|
*.cgo2.c
|
|
_cgo_defun.c
|
|
_cgo_gotypes.go
|
|
_cgo_export.*
|
|
|
|
# Test binary, build with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
coverage.html
|
|
|
|
# vim temp files
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
|
|
# go work files
|
|
go.work
|
|
go.work.sum
|
|
|
|
# Build artifacts
|
|
dist/
|
|
bin/
|
|
|
|
# Example binaries (go build in examples/)
|
|
examples/**/server/server
|
|
examples/**/client/client
|
|
examples/mcp/documented/documented
|
|
examples/mcp/hello/hello
|
|
|
|
# IDE-specific files
|
|
.DS_Store
|
|
/micro
|
|
|
|
# Built example/harness binaries (go build ./path/... drops these at repo root)
|
|
/plan-delegate
|
|
/agent-plan-delegate
|
|
/micro-mcp-gateway
|
|
|
|
# Local Jekyll / Bundler artifacts
|
|
internal/website/.bundle/
|
|
internal/website/_site/
|
|
internal/website/.jekyll-cache/
|