Changes for page Public Web Site
Last modified by Agnease on 2026/05/30 16:24
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 1 removed)
Details
- Page properties
-
- Content
-
... ... @@ -48,12 +48,10 @@ 48 48 49 49 <div class="pathways"> 50 50 <article class="pathway-card"> 51 - <div class="card-heading"> 52 - <div class="pathway-icon"> 53 - <i class="fa fa-refresh" aria-hidden="true"></i> 54 - </div> 55 - <h3>Upgrade XWiki safely</h3> 51 + <div class="pathway-icon"> 52 + <i class="fa fa-refresh" aria-hidden="true"></i> 56 56 </div> 54 + <h3>Upgrade XWiki safely</h3> 57 57 <p> 58 58 Plan and execute XWiki LTS upgrades with compatibility checks, staging validation and rollback planning. 59 59 </p> ... ... @@ -68,12 +68,10 @@ 68 68 </article> 69 69 70 70 <article class="pathway-card"> 71 - <div class="card-heading"> 72 - <div class="pathway-icon"> 73 - <i class="fa fa-life-ring" aria-hidden="true"></i> 74 - </div> 75 - <h3>Maintain XWiki reliably</h3> 69 + <div class="pathway-icon"> 70 + <i class="fa fa-life-ring" aria-hidden="true"></i> 76 76 </div> 72 + <h3>Maintain XWiki reliably</h3> 77 77 <p> 78 78 Keep production XWiki instances stable with troubleshooting, maintenance planning, recovery support and security-aware care. 79 79 </p> ... ... @@ -88,12 +88,10 @@ 88 88 </article> 89 89 90 90 <article class="pathway-card"> 91 - <div class="card-heading"> 92 - <div class="pathway-icon"> 93 - <i class="fa fa-cogs" aria-hidden="true"></i> 94 - </div> 95 - <h3>Extend XWiki for your processes</h3> 87 + <div class="pathway-icon"> 88 + <i class="fa fa-cogs" aria-hidden="true"></i> 96 96 </div> 90 + <h3>Extend XWiki for your processes</h3> 97 97 <p> 98 98 Build custom XWiki applications, workflows, dashboards and integrations around real business needs. 99 99 </p>
- Agnease.Code.SEODetailsClass[0]
-
- metaDescription
-
... ... @@ -1,1 +1,0 @@ 1 -Agnease provides professional XWiki consulting, LTS upgrades, maintenance, custom development, migrations, integrations and security-aware support for production XWiki platforms. - metaTitle
-
... ... @@ -1,1 +1,0 @@ 1 -Professional XWiki Consulting, Upgrades and Development | Agnease
- XWiki.StyleSheetExtension[0]
-
- code
-
... ... @@ -369,13 +369,6 @@ 369 369 flex-direction: column; 370 370 min-height: 100%; 371 371 372 - .card-heading { 373 - display: flex; 374 - align-items: center; 375 - gap: 14px; 376 - margin-bottom: 14px; 377 - } 378 - 379 379 .pathway-icon { 380 380 width: 52px; 381 381 height: 52px; ... ... @@ -385,12 +385,12 @@ 385 385 justify-content: center; 386 386 color: @brand; 387 387 background: fade(@brand, 10%); 381 + margin-bottom: 18px; 388 388 font-size: 19px; 389 - flex-shrink: 0; 390 390 } 391 391 392 392 h3 { 393 - margin: 0; 386 + margin: 0 0 10px; 394 394 color: @text; 395 395 font-size: 22px; 396 396 line-height: 1.25; ... ... @@ -1236,41 +1236,25 @@ 1236 1236 } 1237 1237 1238 1238 /* ========== Resources Index ========== */ 1232 + 1239 1239 .resources-index-page { 1240 1240 background: #fff; 1241 1241 1242 - /* Resources index: show cards in rows of 2, center the last one if alone */ 1243 - .resources-grid { 1244 - display: grid; 1236 + .services-grid { 1245 1245 grid-template-columns: repeat(2, minmax(0, 1fr)); 1246 - justify-content: center; 1247 - align-items: stretch; 1248 1248 } 1239 +} 1249 1249 1250 - .resources-grid .resource-card { 1251 - height: 100%; 1241 +@media (max-width: 980px) { 1242 + .resources-index-page { 1243 + .services-grid { 1244 + grid-template-columns: 1fr; 1245 + } 1252 1252 } 1253 - 1254 - .resources-grid .resource-card:last-child:nth-child(odd) { 1255 - grid-column: 1 / -1; 1256 - max-width: calc(50% - 12px); 1257 - justify-self: center; 1258 - } 1259 1259 } 1260 1260 1261 -/* Keep 2 columns on tablets. Only switch to 1 column on smaller mobile screens. */ 1262 1262 @media (max-width: 767px) { 1263 1263 .resources-index-page { 1264 1264 padding: @section-padding-mobile; 1265 - 1266 - .resources-grid { 1267 - grid-template-columns: 1fr; 1268 - } 1269 - 1270 - .resources-grid .resource-card:last-child:nth-child(odd) { 1271 - grid-column: auto; 1272 - max-width: none; 1273 - justify-self: stretch; 1274 - } 1275 1275 } 1276 1276 }