Changes for page ИТ Отдел
Last modified by Алексей Александрович Иванов on 2025/10/31 08:32
From version 25.1
edited by root_xwiki
on 2025/10/16 12:08
on 2025/10/16 12:08
Change comment:
There is no comment for this version
To version 29.2
edited by root_xwiki
on 2025/10/18 07:09
on 2025/10/18 07:09
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Attachments (0 modified, 1 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,9 +1,16 @@ 1 += ИТ Отдел = 1 1 2 - {{embedURL="https://vk.com/video-145404816_456246869"width="853"height="480"autoplay="1"hd="2"/}}3 +Добро пожаловать в раздел инструкций IT отдела. Ниже представлены все доступные инструкции: 3 3 4 -<!-- Fallback: Если embed не загружается, показываем кнопку-ссылку на VK --> 5 -{{velocity}} 6 -#if($xwiki.ssx.get("embedError")) <!-- Псевдопроверка; замените на реальную, если нужно --> 5 + 6 + 7 +[[введите текст ссылки>>attach:«Компьютерщики» — совет «выключить и снова включить» (1080p).mp4]] 8 + 9 + 10 +{{embed URL="https://vk.com/video-145404816_456246869" width="853" height="480" autoplay="1" hd="2"/}} 11 + 12 +<!-- Fallback: Если embed не загружается, показываем кнопку-ссылку на VK --> 13 +{{velocity}}#if($xwiki.ssx.get("embedError")) <!-- Псевдопроверка; замените на реальную, если нужно --> 7 7 <div style="text-align: center; margin: 20px auto; max-width: 853px;"> 8 8 <a href="https://vk.com/video-145404816_456246869?z=video145404816_456246869%2Fpl_cat_-145404816%2F&autoplay=1&hd=2" target="_blank" class="btn btn-primary" style="background: #4c75a3; color: white; padding: 15px 30px; border-radius: 8px; font-size: 1.1em; text-decoration: none; display: inline-block; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> 9 9 <span style="vertical-align: middle;">▶</span> Открыть видео в VK (HD, Автостарт) ... ... @@ -10,5 +10,125 @@ 10 10 </a> 11 11 <p style="text-align: center; font-size: 0.9em; color: #666; margin-top: 10px;">Инструкционное видео для IT-отдела (нажмите для просмотра)</p> 12 12 </div> 20 +#end{{/velocity}} 21 + 22 +== Инструкции отдела == 23 + 24 +{{velocity}} 25 + 26 +## Получаем текущее пространство 27 +#set($currentSpace = $doc.space) 28 + 29 +## Запрос для nested spaces (XWiki 14+: "ИТ Отдел.Active Directory") 30 +#set($query = "select doc.fullName from XWikiDocument as doc where doc.space like '${currentSpace}.%' and doc.name = 'WebHome' order by doc.title") 31 +#set($childPages = $services.query.hql($query).execute()) 32 + 33 +## Проверяем, есть ли инструкции 34 +#if($childPages && $childPages.size() > 0) 35 + {{html clean="false"}} 36 + <div class="row justify-content-start"> 37 + #foreach($childPageFullName in $childPages) 38 + #set($childDoc = $xwiki.getDocument($childPageFullName)) 39 + #set($childTitle = $childDoc.getPlainTitle()) 40 + #set($childURL = $childDoc.getURL()) 41 + 42 + <div class="col-md-6 col-lg-4 mb-3"> 43 + <div class="instruction-card card shadow-sm border-0 rounded-3"> 44 + <div class="card-accent"></div> 45 + <div class="card-body p-3 text-center d-flex flex-column"> 46 + <div class="icon-wrapper mb-2 mx-auto rounded-circle bg-info bg-opacity-10"> 47 + <img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzODQgNTEyIj48cGF0aCBmaWxsPSIjMTdhMmI4IiBkPSJNMCAxMjhDMCA5Mi43IDE0LjMgNjQgNDggNjRIMzM2YzMzLjcgMCA0OCAyOC43IDQ4IDY0VjQ0OGMwIDM1LjMtMTQuMyA2NC00OCA2NEg0OGMtMzMuNyAwLTQ4LTI4LjctNDgtNjRWMTI4em0yNTYgMTYwYzAgMTcuNy0xNC4zIDMyLTMyIDMySDk2Yy0xNy43IDAtMzItMTQuMy0zMi0zMnNxMTQuMy0zMiAzMi0zMmhxMTI4YzE3LjcgMCAzMiAxNC4zIDMyIDMydi1tLTMyIDk2YzE3LjcgMCAzMi0xNC4zIDMyLTMycy0xNC4zLTMyLTMyLTMySDk2Yy0xNy43IDAtMzIgMTQuMy0zMiAzMnNxMTQuMyAzMiAzMiAzMmhxMTI4eiIvPjwvc3ZnPg==" alt="Документ" style="width: 32px; height: 32px;"> 48 + </div> 49 + <h5 class="card-title mb-2" style="font-size: 1.05rem; font-weight: 600; color: #333; line-height: 1.3;">$childTitle</h5> 50 + <p class="card-text text-muted mb-3 flex-grow-1" style="font-size: 0.85rem; line-height: 1.4;">Инструкция для сотрудников</p> 51 + <a href="$childURL" class="btn btn-info btn-sm rounded-pill" style="padding: 0.4rem 1.2rem; font-size: 0.9rem;"> 52 + Открыть 53 + </a> 54 + </div> 55 + </div> 56 + </div> 57 + #end 58 + </div> 59 + 60 + <style> 61 + .instruction-card { 62 + transition: transform 0.3s ease, box-shadow 0.3s ease; 63 + background: white; 64 + border: 1px solid #e9ecef; 65 + min-height: 200px; 66 + display: flex; 67 + flex-direction: column; 68 + position: relative; 69 + overflow: hidden; 70 + } 71 + .instruction-card:hover { 72 + transform: translateY(-5px); 73 + box-shadow: 0 8px 20px rgba(23,162,184,0.2) !important; 74 + } 75 + .card-accent { 76 + position: absolute; 77 + top: 0; 78 + left: 0; 79 + width: 100%; 80 + height: 4px; 81 + background: linear-gradient(90deg, #17a2b8, #5bc0de); 82 + } 83 + .icon-wrapper { 84 + width: 50px; 85 + height: 50px; 86 + display: flex; 87 + align-items: center; 88 + justify-content: center; 89 + border: 2px solid rgba(23,162,184,0.15); 90 + } 91 + .card-body { 92 + flex: 1; 93 + display: flex; 94 + flex-direction: column; 95 + justify-content: space-between; 96 + } 97 + .btn-info { 98 + background-color: #17a2b8; 99 + border-color: #17a2b8; 100 + color: white; 101 + transition: all 0.3s; 102 + } 103 + .btn-info:hover { 104 + background-color: #138496; 105 + transform: scale(1.05); 106 + } 107 + .row { 108 + display: flex; 109 + flex-wrap: wrap; 110 + margin: 0 -12px; 111 + } 112 + .col-lg-4 { 113 + flex: 0 0 33.3333%; 114 + max-width: 33.3333%; 115 + padding: 0 12px; 116 + } 117 + .col-md-6 { 118 + flex: 0 0 50%; 119 + max-width: 50%; 120 + padding: 0 12px; 121 + } 122 + .mb-3 { 123 + margin-bottom: 1rem; 124 + } 125 + @media (max-width: 1200px) { 126 + .col-lg-4 { flex: 0 0 50%; max-width: 50%; } 127 + } 128 + @media (max-width: 768px) { 129 + .col-lg-4, .col-md-6 { flex: 0 0 100%; max-width: 100%; } 130 + .instruction-card { min-height: 180px; } 131 + } 132 + </style> 133 + {{/html}} 134 +#else 135 + {{info}}В этом разделе пока нет инструкций. Создайте новую страницу через кнопку **Create**.{{/info}} 13 13 #end 14 14 {{/velocity}} 138 + 139 +== Добавить новую инструкцию == 140 + 141 +Для создания новой инструкции нажмите **Create** в меню выше и выберите родительское пространство **"ИТ Отдел"**.
- «Компьютерщики» — совет «выключить и снова включить» (1080p).mp4
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.root_xwiki - Size
-
... ... @@ -1,0 +1,1 @@ 1 +48.9 MB - Content