Исходный код вики 02. Деятельность СЗН

Версия 2.1 от Admin Admin на 2024/05/18 00:56

Последние авторы
1 (% class="box infomessage" %)
2 (((
3 **Деятельность СЗН**
4 )))
5
6 (((
7 **Координатор**: Оксана Павловна Гендриксон
8 )))
9 (((
10 **Краткое описание**: Данный раздел содержит материалы по деятельности Службы занятости населения.
11 )))
12
13 {{html clean="false"}}
14 <head>
15 <style>
16 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');
17
18 ul.button-list {
19 padding: 0;
20 list-style-type: none;
21 }
22
23 .button-list li {
24 display: inline-block;
25 vertical-align: top;
26 margin: 10px;
27 }
28
29 .button-link {
30 display: inline-block;
31 a:link, a:active, a:visited {
32 display: flex;
33 align-items: center;
34 justify-content: center;
35 width: 280px;
36 height: 75px;
37 font-family: 'Montserrat', sans-serif !important;
38 font-size: 14px;
39 font-weight: 600;
40 cursor: pointer;
41 text-align: center;
42 text-decoration: none;
43 color: #3e7cbc;
44 background-color: #ffffff;
45 border: none;
46 border-radius: 10px;
47 box-shadow: 0 0 9px rgba(0, 0, 0, 0.25);
48 margin: 10px;
49 padding: 0 10px;
50 }
51 }
52
53 .button-link:hover {
54 a:link, a:active, a:visited {
55 background-color: rgba(0, 0, 0, 0.03);
56 }
57 }
58 </style>
59 </head>
60 <script>
61 {{velocity}}
62 #set($pubRefs = $doc.getChildrenReferences())
63 #foreach($pubRef in $pubRefs)
64 #set($pub = $xwiki.getDocument($pubRef))
65 #set($title = $pub.getTitle())
66 (% class="button-link" %)
67 <li>[[$title>>$pubRef]]</li>
68 #end
69 </script>
70 {{/html}}
71
72 {{velocity}}
73 {{html wiki="true"}}
74 (% <ul class="button-list"> %)
75 #set($pubRefs = $doc.getChildrenReferences())
76 #foreach($pubRef in $pubRefs)
77 #set($pub = $xwiki.getDocument($pubRef))
78 #set($title = $pub.getTitle())
79 (% class="button-link" %)
80 (% <li> %)[[$title>>$pubRef]](% </li> %)
81 #end
82 {{/html}}
83 (% </ul> %)
84 {{/velocity}}