Yinoussa Adagolodjo

Website Architecture Reorganization Suggestions

Website Architecture Reorganization Suggestions

Option 1: Research-Centric Organization

This structure prioritizes your research identity and makes it easier for visitors to understand your work:

β”œβ”€β”€ Home (Brief intro + latest highlights)
β”œβ”€β”€ About
β”‚   β”œβ”€β”€ Biography
β”‚   β”œβ”€β”€ Research Interests
β”‚   └── CV/Resume
β”œβ”€β”€ Research
β”‚   β”œβ”€β”€ Overview & Philosophy
β”‚   β”œβ”€β”€ Current Projects
β”‚   β”œβ”€β”€ Publications
β”‚   β”‚   β”œβ”€β”€ By Year
β”‚   β”‚   β”œβ”€β”€ By Topic
β”‚   β”‚   └── Selected/Featured
β”‚   β”œβ”€β”€ Software & Tools
β”‚   └── Collaborations
β”œβ”€β”€ Teaching
β”‚   β”œβ”€β”€ Current Courses
β”‚   β”œβ”€β”€ Past Courses
β”‚   └── Student Resources
β”œβ”€β”€ News & Updates
└── Contact

Option 2: Activity-Based Organization ⭐ SELECTED

This groups content by what you actually do, making it intuitive for different audiences:

β”œβ”€β”€ Home
β”œβ”€β”€ Research
β”‚   β”œβ”€β”€ Active Projects
β”‚   β”œβ”€β”€ Publications & Papers
β”‚   β”œβ”€β”€ Software & Datasets
β”‚   └── Research Group
β”œβ”€β”€ Teaching & Mentoring
β”‚   β”œβ”€β”€ Courses
β”‚   β”œβ”€β”€ Student Projects
β”‚   └── Supervision
β”œβ”€β”€ Professional
β”‚   β”œβ”€β”€ About Me
β”‚   β”œβ”€β”€ CV & Experience
β”‚   β”œβ”€β”€ Service & Reviews
β”‚   └── Talks & Presentations
β”œβ”€β”€ Resources
β”‚   β”œβ”€β”€ Code & Tools
β”‚   β”œβ”€β”€ Datasets
β”‚   └── Tutorials
└── Contact & News

Option 3: Audience-Focused Organization

This structure considers who is visiting your site and what they need:

β”œβ”€β”€ Home (with clear audience paths)
β”œβ”€β”€ For Researchers
β”‚   β”œβ”€β”€ Publications
β”‚   β”œβ”€β”€ Open Source Projects
β”‚   β”œβ”€β”€ Datasets & Tools
β”‚   └── Collaboration Opportunities
β”œβ”€β”€ For Students
β”‚   β”œβ”€β”€ Current Courses
β”‚   β”œβ”€β”€ Research Opportunities
β”‚   β”œβ”€β”€ Resources & Tutorials
β”‚   └── Thesis Topics
β”œβ”€β”€ For Industry
β”‚   β”œβ”€β”€ Consulting & Partnerships
β”‚   β”œβ”€β”€ Technology Transfer
β”‚   └── Applied Research
β”œβ”€β”€ About
β”‚   β”œβ”€β”€ Biography
β”‚   β”œβ”€β”€ Research Vision
β”‚   └── CV
└── News & Contact

Option 4: Portfolio-Style Organization

This modern approach treats your site like a professional portfolio:

β”œβ”€β”€ Home (showcase + quick navigation)
β”œβ”€β”€ Work
β”‚   β”œβ”€β”€ Research Projects (with visual portfolios)
β”‚   β”œβ”€β”€ Publications (grouped by impact/topic)
β”‚   β”œβ”€β”€ Software & Tools
β”‚   └── Case Studies
β”œβ”€β”€ Expertise
β”‚   β”œβ”€β”€ Research Areas
β”‚   β”œβ”€β”€ Technical Skills
β”‚   └── Methodologies
β”œβ”€β”€ Teaching
β”‚   β”œβ”€β”€ Course Portfolio
β”‚   └── Educational Philosophy
β”œβ”€β”€ About
└── Connect (contact + social + news)

1. Reduce Navigation Complexity

Current navigation has too many dropdown levels. Flatten it to 2 levels maximum.

2. Merge Similar Content

  • Combine β€œNews” into the homepage or a dedicated updates section
  • Merge CV content with About page
  • Consolidate research overview with main research page

3. Improve Content Discoverability

  • Add a search function
  • Create topic-based tags for publications
  • Add β€œRelated Work” sections between pages

4. Better Content Hierarchy

# Suggested _config.yml collections update
collections:
  projects:          # Instead of mixing with research
    output: true
    permalink: /work/:name/
  publications:      # Separate from general research
    output: true
    permalink: /publications/:year/:title/
  courses:           # More specific than teaching
    output: true
    permalink: /teaching/:name/

5. Add Missing Sections

  • Software/Tools showcase
  • Media/Press coverage
  • Student opportunities
  • Resource downloads

Implementation Plan

  1. βœ… Create this suggestions document
  2. ⏳ Update _config.yml with new collections structure
  3. ⏳ Restructure navigation according to Option 2
  4. ⏳ Reorganize content directories
  5. ⏳ Update layouts for new structure
  6. ⏳ Create missing content sections