Skip to content

Commit 30070de

Browse files
change dot to underscore in linked sources json name
1 parent 72ed25a commit 30070de

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

_pages/projects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ The FEAST ecosystem consists of several project repositories that provide tools,
1212

1313
Additional project pages, hosted standalone, can be accessed via their corresponding GitHub Pages sites:
1414

15-
{% for project in site.data.sources_linked.linked_projects %}
15+
{% for project in site.data.linked_projects.linked_projects %}
1616
- [{{ project.title }}]({{ project.url }})
1717
{% endfor %}

_pages/site-architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ FEASTorg uses a hybrid Jekyll architecture that combines automated content impor
3636

3737
Some projects maintain standalone GitHub Pages sites but are linked through the hub due to complex CI/CD requirements. For example, hardware projects (e.g., Slice\_\* repositories) have their own build pipeline using [bread-infra](https://github.com/FEASTorg/bread-infra), or the Freeboard Project, which has its own CI/CD setup using auto-generated developer API reference and component documentation from monorepo packages, published via VuePress and GitHub Actions.
3838

39-
These are managed via `_data/sources.linked.json` and automatically generate redirect stub pages.
39+
These are managed via `_data/linked_projects.json` and automatically generate redirect stub pages.
4040

4141
## Navigation & Styling
4242

scripts/generate_linked_redirects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import json
88
from pathlib import Path
99

10-
CONFIG = Path("_data/sources.linked.json")
10+
CONFIG = Path("_data/linked_projects.json")
1111
OUT_DIR = Path("docs/projects/linked")
1212

1313

0 commit comments

Comments
 (0)