0 Votes

Changes for page Home

Last modified by Alex Cotiugă on 2026/01/13 13:12

From version 7.50
edited by Alex Cotiugă
on 2025/11/13 12:35
Change comment: There is no comment for this version
To version 7.56
edited by Alex Cotiugă
on 2025/11/13 12:43
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -66,6 +66,42 @@
66 66   'Test upgrades with backups and validation',
67 67   'Safe production rollout with minimal downtime'
68 68   ]
69 + },{
70 + 'title': 'Maintenance, Support & Recovery',
71 + 'icon': 'stethoscope',
72 + 'content': 'Ensure long-term stability and quick response when issues appear.',
73 + 'items': [
74 + 'Monitoring and performance checks',
75 + 'Security patching, log analysis, triage',
76 + 'Issue recovery, data repair, hardening'
77 + ]
78 + },{
79 + 'title': 'Development & Integrations',
80 + 'icon': 'cogs',
81 + 'content': 'Extend and connect XWiki to fit your workflow and systems.',
82 + 'items': [
83 + 'Custom apps, macros, automation',
84 + 'SSO, REST APIs, LDAP, CRM links',
85 + 'Maintainable extensions for long-term use'
86 + ]
87 + },{
88 + 'title': 'Hosting & Deployment',
89 + 'icon': 'cloud',
90 + 'content': 'Cloud-ready environments designed for reliability and performance.',
91 + 'items': [
92 + 'Containerized deployment and TLS',
93 + 'Backups, restore strategy, observability',
94 + 'Optimization and load tuning'
95 + ]
96 + },{
97 + 'title': 'Migrations to XWiki',
98 + 'icon': 'exchange',
99 + 'content': 'Move from Confluence, SharePoint, or MediaWiki to XWiki with full data integrity and structure.',
100 + 'items': [
101 + 'Preserve hierarchy, attachments, and permissions',
102 + 'Convert macros, categories, and metadata for XWiki',
103 + 'Redirect old URLs and maintain SEO consistency'
104 + ]
69 69   }])
70 70   <section class="services" aria-labelledby="services-title">
71 71   <div class="container">
... ... @@ -72,73 +72,20 @@
72 72   <h2 id="services-title">Services</h2>
73 73   <p class="services-sub">All the XWiki services you need, delivered with precision and care</p>
74 74   <div class="services-grid">
75 - <!-- Row 1 -->
76 - <article class="service">
77 - <i class="fa fa-refresh" aria-hidden="true"></i>
78 - <div class="body">
79 - <h4>Upgrades</h4>
80 - <p>Stay current with the latest XWiki LTS and keep your instance secure and stable.</p>
81 - <ul>
82 - <li>Audit setup, extensions, and configurations</li>
83 - <li>Test upgrades with backups and validation</li>
84 - <li>Safe production rollout with minimal downtime</li>
85 - </ul>
86 - </div>
87 - </article>
88 -
89 - <article class="service">
90 - <i class="fa fa-stethoscope" aria-hidden="true"></i>
91 - <div class="body">
92 - <h3>Maintenance, Support &amp; Recovery</h3>
93 - <p>Ensure long-term stability and quick response when issues appear.</p>
94 - <ul>
95 - <li>Monitoring and performance checks</li>
96 - <li>Security patching, log analysis, triage</li>
97 - <li>Issue recovery, data repair, hardening</li>
98 - </ul>
99 - </div>
100 - </article>
101 -
102 - <!-- Row 2 -->
103 - <article class="service">
104 - <i class="fa fa-cogs" aria-hidden="true"></i>
105 - <div class="body">
106 - <h3>Development &amp; Integrations</h3>
107 - <p>Extend and connect XWiki to fit your workflow and systems.</p>
108 - <ul>
109 - <li>Custom apps, macros, automation</li>
110 - <li>SSO, REST APIs, LDAP, CRM links</li>
111 - <li>Maintainable extensions for long-term use</li>
112 - </ul>
113 - </div>
114 - </article>
115 -
116 - <article class="service">
117 - <i class="fa fa-cloud" aria-hidden="true"></i>
118 - <div class="body">
119 - <h3>Hosting &amp; Deployment</h3>
120 - <p>Cloud-ready environments designed for reliability and performance.</p>
121 - <ul>
122 - <li>Containerized deployment and TLS</li>
123 - <li>Backups, restore strategy, observability</li>
124 - <li>Optimization and load tuning</li>
125 - </ul>
126 - </div>
127 - </article>
128 -
129 - <!-- Row 3 (single, centered) -->
130 - <article class="service service--center">
131 - <i class="fa fa-exchange" aria-hidden="true"></i>
132 - <div class="body">
133 - <h3>Migrations</h3>
134 - <p>Move from Confluence, SharePoint, or MediaWiki to XWiki with full data integrity and structure.</p>
135 - <ul>
136 - <li>Preserve hierarchy, attachments, and permissions</li>
137 - <li>Convert macros, categories, and metadata for XWiki</li>
138 - <li>Redirect old URLs and maintain SEO consistency</li>
139 - </ul>
140 - </div>
141 - </article>
111 + #foreach ($entry in $servicesSectionData)
112 + <article class="service">
113 + <i class="fa fa-$entry.icon" aria-hidden="true"></i>
114 + <div class="body">
115 + <h4>$entry.title</h4>
116 + <p>$entry.content</p>
117 + <ul>
118 + #foreach ($item in $entry.items)
119 + <li>$item</li>
120 + #end
121 + </ul>
122 + </div>
123 + </article>
124 + #end
142 142   </div>
143 143   </div>
144 144   </section>