| ... |
... |
@@ -66,6 +66,15 @@ |
| 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 |
+ ] |
| 69 |
69 |
}]) |
| 70 |
70 |
<section class="services" aria-labelledby="services-title"> |
| 71 |
71 |
<div class="container"> |
| ... |
... |
@@ -73,18 +73,20 @@ |
| 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 |
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> |
|
85 |
+ #foreach ($entry in $servicesSectionData) |
|
86 |
+ <article class="service"> |
|
87 |
+ <i class="fa fa-$entry.icon" aria-hidden="true"></i> |
|
88 |
+ <div class="body"> |
|
89 |
+ <h4>$entry.title</h4> |
|
90 |
+ <p>$entry.content</p> |
|
91 |
+ <ul> |
|
92 |
+ #foreach ($item in $entry.items) |
|
93 |
+ <li>$item</li> |
|
94 |
+ #end |
|
95 |
+ </ul> |
|
96 |
+ </div> |
|
97 |
+ </article> |
|
98 |
+ #end |
| 88 |
88 |
|
| 89 |
89 |
<article class="service"> |
| 90 |
90 |
<i class="fa fa-stethoscope" aria-hidden="true"></i> |