feat: Implement comprehensive satware AG Benutzerkürzel redirect system (#106)
* feat: Add mkdocs-redirects plugin configuration for /ja → /team/jane.html redirect - Add redirects plugin to plugins section - Configure redirect mapping for /ja to /team/jane.html - Support multiple URL patterns and fallback redirects - Fixes issue #99 * feat: Add fallback redirect page for /ja → /team/jane.html - Create fallback redirect page with multiple redirect methods - Include meta refresh, JavaScript redirect, and manual link - Provides redundancy for redirect functionality - SEO-friendly with proper meta tags * feat: Add comprehensive redirect system for all team member Benutzerkürzel - Implement satware AG Benutzerkürzel system for all team members - Add redirects for all agents following collision resolution rules - Support both direct and index patterns for each abbreviation - Complete redirect mapping: * AA → Amira, BA → Bastian, BEA → Bea (collision resolved) * DA → Denopus, GA → Gunta, JA → Jane * JOA → John, JUA → Justus (collision resolved) * LA → Lara, LEA → Lenna, LEO → Leon, LUA → Luna * MA → Marco, OA → Olu, TA → Theo, WA → Wolfgang Fixes issue #99 * docs: Add comprehensive documentation for satware AG Benutzerkürzel redirect system - Document complete redirect system implementation - Include collision resolution rules and examples - List all team member abbreviations and target URLs - Provide testing instructions and troubleshooting guide --------- Co-authored-by: Michael Wegener <mw@satware.com>
This commit is contained in:
+59
-2
@@ -68,6 +68,64 @@ plugins:
|
||||
archive: true
|
||||
authors: true
|
||||
- search
|
||||
- redirects:
|
||||
redirect_maps:
|
||||
# satware AG Benutzerkürzel System - Team Member Redirects
|
||||
# Format: kürzel.md → team/member.md
|
||||
|
||||
# A-Team
|
||||
'aa.md': 'team/amira.md' # Amira Alesi
|
||||
'aa/index.md': 'team/amira.md'
|
||||
|
||||
# B-Team
|
||||
'ba.md': 'team/bastian.md' # Bastian Alesi
|
||||
'ba/index.md': 'team/bastian.md'
|
||||
'bea.md': 'team/bea.md' # Bea Alesi (collision resolved)
|
||||
'bea/index.md': 'team/bea.md'
|
||||
|
||||
# D-Team
|
||||
'da.md': 'team/denopus.md' # Denopus Alesi
|
||||
'da/index.md': 'team/denopus.md'
|
||||
|
||||
# G-Team
|
||||
'ga.md': 'team/gunta.md' # Gunta Alesi
|
||||
'ga/index.md': 'team/gunta.md'
|
||||
|
||||
# J-Team
|
||||
'ja.md': 'team/jane.md' # Jane Alesi
|
||||
'ja/index.md': 'team/jane.md'
|
||||
'jane.md': 'team/jane.md' # Alternative redirect
|
||||
'joa.md': 'team/john.md' # John Alesi (collision resolved)
|
||||
'joa/index.md': 'team/john.md'
|
||||
'jua.md': 'team/justus.md' # Justus Alesi (collision resolved)
|
||||
'jua/index.md': 'team/justus.md'
|
||||
|
||||
# L-Team
|
||||
'la.md': 'team/lara.md' # Lara Alesi
|
||||
'la/index.md': 'team/lara.md'
|
||||
'lea.md': 'team/lenna.md' # Lenna Alesi (collision resolved)
|
||||
'lea/index.md': 'team/lenna.md'
|
||||
'leo.md': 'team/leon.md' # Leon Alesi (collision resolved)
|
||||
'leo/index.md': 'team/leon.md'
|
||||
'lua.md': 'team/luna.md' # Luna Alesi (collision resolved)
|
||||
'lua/index.md': 'team/luna.md'
|
||||
|
||||
# M-Team
|
||||
'ma.md': 'team/marco.md' # Marco Alesi
|
||||
'ma/index.md': 'team/marco.md'
|
||||
|
||||
# O-Team
|
||||
'oa.md': 'team/olu.md' # Olu Alesi
|
||||
'oa/index.md': 'team/olu.md'
|
||||
|
||||
# T-Team
|
||||
'ta.md': 'team/theo.md' # Theo Alesi
|
||||
'ta/index.md': 'team/theo.md'
|
||||
|
||||
# W-Team
|
||||
'wa.md': 'team/wolfgang.md' # Wolfgang Alesi
|
||||
'wa/index.md': 'team/wolfgang.md'
|
||||
|
||||
- minify:
|
||||
minify_js: true
|
||||
minify_html: true
|
||||
@@ -205,5 +263,4 @@ nav:
|
||||
- Workshops: workshops/index.md
|
||||
- Preise: zugang/index.md
|
||||
- FAQ: faq/index.md
|
||||
- Blog: blog/index.md
|
||||
|
||||
- Blog: blog/index.md
|
||||
Reference in New Issue
Block a user