Wiki source code of services

Version 3.2 by Alex Cotiugă on 2026/05/12 12:07

Hide last authors
Alex Cotiugă 2.1 1 {{velocity}}
2 #set ($discard = $xwiki.ssx.use('PublicWebSite.WebHome'))
3 {{html clean="false"}}
4
5 ## PAGE HEADER
Alex Cotiugă 3.2 6 <section class="hero hero-centered service-hero" aria-labelledby="hero-title">
7 <div class="container hero-inner">
8 <div class="hero-kicker">
9 <i class="fa fa-cogs" aria-hidden="true"></i>
10 XWiki consulting and engineering
11 </div>
12
13 <h1 id="hero-title">XWiki consulting, support and development</h1>
14
15 <p class="lead">
16 Specialized services for organizations that rely on XWiki for knowledge management, intranets,
17 workflows, documentation and internal operations.
Alex Cotiugă 2.1 18 </p>
Alex Cotiugă 3.2 19
20 <p class="hero-support">
21 From safe LTS upgrades and long-term maintenance to custom applications, integrations and migrations,
22 your XWiki platform can stay secure, stable and useful as your organization evolves.
23 </p>
24
25 <div class="hero-actions">
26 <a class="btn btn-primary" href="$xwiki.getURL('contact.WebHome')">Request a consultation</a>
27 <a class="btn btn-secondary" href="$xwiki.getURL('PublicWebSite.WebHome')">Back to homepage</a>
28 </div>
Alex Cotiugă 2.1 29 </div>
30 </section>
31
32 ## SERVICE CARDS
33 #set ($sectionItems = [{
Alex Cotiugă 3.1 34 'title': 'XWiki Upgrade Services',
Alex Cotiugă 2.1 35 'icon': 'refresh',
36 'url': '/services/xwiki-upgrades',
Alex Cotiugă 3.1 37 'content': 'Safe LTS upgrades for production XWiki instances, with compatibility checks, backups, rollback planning and post-upgrade validation.'
Alex Cotiugă 2.1 38 },{
Alex Cotiugă 3.1 39 'title': 'XWiki Support & Maintenance',
Alex Cotiugă 2.1 40 'icon': 'life-ring',
41 'url': '/services/xwiki-maintenance-support',
Alex Cotiugă 3.1 42 'content': 'Ongoing technical care for XWiki environments that need to stay stable, secure, performant and recoverable.'
Alex Cotiugă 2.1 43 },{
Alex Cotiugă 3.1 44 'title': 'XWiki Development & Integrations',
45 'icon': 'cogs',
Alex Cotiugă 2.1 46 'url': '/services/xwiki-development-integrations',
Alex Cotiugă 3.1 47 'content': 'Custom applications, workflows, dashboards, macros, automation and integrations built using XWiki conventions.'
Alex Cotiugă 2.1 48 },{
Alex Cotiugă 3.1 49 'title': 'XWiki Migrations',
Alex Cotiugă 2.1 50 'icon': 'exchange',
51 'url': '/services/xwiki-migrations',
Alex Cotiugă 3.1 52 'content': 'Migration support from Confluence, SharePoint, MediaWiki, file-based documentation or legacy knowledge systems.'
Alex Cotiugă 2.1 53 },{
Alex Cotiugă 3.1 54 'title': 'Authentication & Access Control',
55 'icon': 'lock',
56 'url': '/services/xwiki-authentication-access-control',
57 'content': 'LDAP, Active Directory, SSO, OIDC, SAML, MFA and permission model support for secure XWiki deployments.'
58 },{
59 'title': 'XWiki Security Review',
60 'icon': 'shield',
61 'url': '/services/xwiki-security-review',
62 'content': 'Security-aware review of versions, extensions, rights, scripting, authentication and upgrade exposure.'
Alex Cotiugă 2.1 63 }])
64
65 <section aria-labelledby="items-title">
66 <div class="container">
67 <h2 id="items-title">How Agnease can help</h2>
68
69 <div class="widgets">
70 #foreach ($entry in $sectionItems)
71 <article class="widget">
72 <div class="icon" aria-hidden="true">
73 <i class="fa fa-$entry.icon"></i>
74 <h4>$entry.title</h4>
75 </div>
76 <p>$entry.content</p>
77 <p class="card-link"><a href="$entry.url">View service</a></p>
78 </article>
79 #end
80 </div>
81 </div>
82 </section>
83
84 ## CTA
85 <section class="cta-section">
86 <div class="container">
87 <p class="text-center contact-inline">
88 Not sure where to start? <a href="mailto:alex@agnease.com">Contact Agnease</a>.
89 </p>
90 </div>
91 </section>
92
93 {{/html}}
94 {{/velocity}}