All unnecessary files moved to ARCHIVE/
folder:
PI_ONLY/
- Complex administrative filesSTUDENT_ZONE/
- Complicated templates and guidesWORKFLOWS/
- Overly detailed workflow documentsutils/
- Python scripts that made things complicatedLAB_WEBSITE_GUIDE.md
- 200+ line overcomplicated guideCOLLABORATIVE_SYSTEM_OVERVIEW.md
- Unnecessary complexityIMPLEMENTATION_PLAN.md
- More unnecessary docscollections/
directory and individual person pages_includes/
and _layouts/
(using theme defaults)_config.yml
to remove collections complexity_data/authors.yml
WEBSITE_GUIDE.md
- Clear, focused guide (under 50 lines of actual content)README.md
- Quick overview with file structureSIMPLIFICATION_SUMMARY.md
- This documentUsers now only need to edit 3 files to manage the entire website:
_data/authors.yml
- Add/remove lab members_data/papers.csv
- Add/remove publications_data/navigation.yml
- Change website menuβββ PI_ONLY/
βββ STUDENT_ZONE/
βββ WORKFLOWS/
βββ utils/
β βββ generate_people.py
β βββ import_publications.py
β βββ validate_student_pr.py
βββ LAB_WEBSITE_GUIDE.md (200+ lines)
βββ COLLABORATIVE_SYSTEM_OVERVIEW.md
βββ IMPLEMENTATION_PLAN.md
βββ collections/
β βββ _people/ (auto-generated pages)
β βββ _posts/
βββ _includes/
βββ _layouts/
βββ _data/ # EDIT THESE 3 FILES:
β βββ authors.yml # β Lab members
β βββ papers.csv # β Publications
β βββ navigation.yml # β Menu
βββ _pages/ # Content pages
βββ _posts/ # News posts
βββ assets/images/ # Images
βββ WEBSITE_GUIDE.md # Simple guide
βββ README.md # Quick start
βββ ARCHIVE/ # Old complex stuff
authors.yml
, papers.csv
, or navigation.yml
)assets/images/
if neededThatβs it! No scripts, no templates, no complicated workflows.
The old complicated system is preserved in ARCHIVE/
if ever needed, but the new system is designed to be maintenance-free and user-friendly.