Wiki source code of Home
Version 9.1 by Isaac Mejia on 2025/12/05 16:52
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | {{velocity}} | ||
| 2 | ## KB Home (Main.WebHome) | ||
| 3 | |||
| 4 | ## ------------------------------------------------------------ | ||
| 5 | ## 1) Discover category pages automatically | ||
| 6 | ## - Category pages live at: Main.<CategoryLabel>.WebHome | ||
| 7 | ## - We query all docs in space=Main except WebHome + KB-Categories | ||
| 8 | ## ------------------------------------------------------------ | ||
| 9 | #set ($xwql = | ||
| 10 | "select doc.fullName, doc.title " + | ||
| 11 | "from XWikiDocument doc " + | ||
| 12 | "where doc.space = :space " + | ||
| 13 | "and doc.name <> 'WebHome' " + | ||
| 14 | "and doc.name <> 'KB-Categories' " + | ||
| 15 | "and doc.hidden <> true " + | ||
| 16 | "order by lower(doc.title)" | ||
| 17 | ) | ||
| 18 | |||
| 19 | #set ($query = $services.query.xwql($xwql).bindValue("space", "Main")) | ||
| 20 | #set ($rows = $query.execute()) | ||
| 21 | |||
| 22 | ## Build a list of document objects for convenience | ||
| 23 | #set ($categories = []) | ||
| 24 | #foreach ($row in $rows) | ||
| 25 | #set ($fullName = $row[0]) ## e.g. "Main.Member Management" | ||
| 26 | #set ($catDoc = $xwiki.getDocument($fullName)) | ||
| 27 | #set ($discard = $categories.add($catDoc)) | ||
| 28 | #end | ||
| 29 | |||
| 30 | ## ------------------------------------------------------------ | ||
| 31 | ## 2) Optional: description overrides by category label | ||
| 32 | ## Keys must match the *display title* (e.g. "Member Management") | ||
| 33 | ## ------------------------------------------------------------ | ||
| 34 | #set ($categoryDescriptions = { | ||
| 35 | "Member Management": "How to manage members, families, and profiles.", | ||
| 36 | "Configuration": "Set up locations, billing, and core system settings.", | ||
| 37 | "Billing & Payments": "Invoices, collections, and payment processing.", | ||
| 38 | "Reporting & Analytics": "Understand your numbers and performance.", | ||
| 39 | "Integrations": "Connect eFit with other tools in your stack." | ||
| 40 | }) | ||
| 41 | |||
| 42 | {{html clean="false"}} | ||
| 43 | <div class="kb-home"> | ||
| 44 | |||
| 45 | <!-- HERO --> | ||
| 46 | <div class="kb-hero"> | ||
| 47 | <h1 class="kb-hero-title">Member Solutions Knowledge Base</h1> | ||
| 48 | <p class="kb-hero-subtitle"> | ||
| 49 | Guides, walkthroughs, and best practices to help you and your team get the most out of the platform. | ||
| 50 | </p> | ||
| 51 | |||
| 52 | <!-- Simple search box that posts to XWiki search --> | ||
| 53 | <div class="kb-hero-search"> | ||
| 54 | <form action="$xwiki.getURL('Main.WebHome', 'view')" method="get"> | ||
| 55 | <input | ||
| 56 | type="text" | ||
| 57 | name="text" | ||
| 58 | placeholder="Search for an article (e.g. "family membership")" | ||
| 59 | /> | ||
| 60 | </form> | ||
| 61 | </div> | ||
| 62 | </div> | ||
| 63 | |||
| 64 | <!-- CATEGORY GRID --> | ||
| 65 | <div class="kb-section"> | ||
| 66 | <h2 class="kb-section-title">Browse by category</h2> | ||
| 67 | |||
| 68 | <div class="kb-category-grid"> | ||
| 69 | #foreach ($catDoc in $categories) | ||
| 70 | ## Label shown on the card | ||
| 71 | #set ($label = $catDoc.displayTitle) ## e.g. "Member Management" | ||
| 72 | |||
| 73 | ## Space/page name used in the URL path: | ||
| 74 | ## uploader created category pages as Main.<Label>.WebHome, | ||
| 75 | ## so doc.name is the space segment we need (with spaces). | ||
| 76 | #set ($spaceName = $catDoc.name) ## e.g. "Member Management" | ||
| 77 | |||
| 78 | ## Description: use override map if present, else generic | ||
| 79 | #set ($desc = $categoryDescriptions.get($label)) | ||
| 80 | #if (!$desc) | ||
| 81 | #set ($desc = "Articles and guides for " + $label) | ||
| 82 | #end | ||
| 83 | |||
| 84 | ## Build clean URL: /bin/view/Main/<SpaceName> (no trailing slash) | ||
| 85 | #set ($encoded = $escapetool.url($spaceName)) | ||
| 86 | #set ($cleanUrl = "/bin/view/Main/$encoded") | ||
| 87 | |||
| 88 | <a class="kb-card" href="$cleanUrl"> | ||
| 89 | <div> | ||
| 90 | <div class="kb-card-title">$escapetool.xml($label)</div> | ||
| 91 | <div class="kb-card-body"> | ||
| 92 | $escapetool.xml($desc) | ||
| 93 | </div> | ||
| 94 | </div> | ||
| 95 | <div class="kb-card-meta">Category</div> | ||
| 96 | </a> | ||
| 97 | #end | ||
| 98 | </div> | ||
| 99 | </div> | ||
| 100 | |||
| 101 | <!-- BOTTOM CTA --> | ||
| 102 | <div class="kb-cta"> | ||
| 103 | <div class="kb-cta-content"> | ||
| 104 | <h2>Still need help?</h2> | ||
| 105 | <p> | ||
| 106 | If you can’t find what you’re looking for, our support team is happy to help. | ||
| 107 | </p> | ||
| 108 | </div> | ||
| 109 | <a href="mailto:support@membersolutions.com" class="kb-cta-button"> | ||
| 110 | Contact Support | ||
| 111 | </a> | ||
| 112 | </div> | ||
| 113 | |||
| 114 | </div> | ||
| 115 | {{/html}} | ||
| 116 | {{/velocity}} |