Wiki source code of Административный
Last modified by root_xwiki on 2025/10/29 08:30
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | = Административный отдел = | ||
| 2 | |||
| 3 | Добро пожаловать в раздел административной документации. Ниже представлены все доступные инструкции: | ||
| 4 | |||
| 5 | == Инструкции отдела == | ||
| 6 | |||
| 7 | {{velocity}} | ||
| 8 | #set($currentSpace = $doc.space) | ||
| 9 | #set($query = "select doc.fullName from XWikiDocument as doc where doc.space like '${currentSpace}.%' and doc.name = 'WebHome' order by doc.title") | ||
| 10 | #set($childPages = $services.query.hql($query).execute()) | ||
| 11 | |||
| 12 | #if($childPages && $childPages.size() > 0) | ||
| 13 | {{html clean="false"}} | ||
| 14 | <div class="row justify-content-start"> | ||
| 15 | #foreach($childPageFullName in $childPages) | ||
| 16 | #set($childDoc = $xwiki.getDocument($childPageFullName)) | ||
| 17 | #set($childTitle = $childDoc.getPlainTitle()) | ||
| 18 | #set($childURL = $childDoc.getURL()) | ||
| 19 | |||
| 20 | <div class="col-md-6 col-lg-4 mb-3"> | ||
| 21 | <div class="instruction-card card shadow-sm border-0 rounded-3"> | ||
| 22 | <div class="card-accent-secondary"></div> | ||
| 23 | <div class="card-body p-3 text-center d-flex flex-column"> | ||
| 24 | <div class="icon-wrapper mb-2 mx-auto rounded-circle bg-secondary bg-opacity-10"> | ||
| 25 | <img src="data:image/svg+xml;base64,PHN2ZyB4bW |