Changes for page Card Navigation

Last modified by Calvin Henderson on 2025/03/11 10:29

From version 14.48
edited by calvin_henderson
on 2024/12/18 13:21
Change comment: There is no comment for this version
To version 14.51
edited by calvin_henderson
on 2024/12/18 13:23
Change comment: There is no comment for this version

Summary

Details

XWiki.WikiMacroClass[0]
code
... ... @@ -6,18 +6,12 @@
6 6  
7 7  
8 8  {{html wiki="true"}}
9 -#if (false)
10 10   <div style="display: grid;
11 11   grid-template-columns: 1fr 1fr 1fr;
12 12   gap: 10px;
13 13   ">
14 -#end
15 -$entries
16 -
17 -
18 -#foreach($entry in $entries.split('\n'))
19 - #set($card = $entry.split('\|'))
20 - #if (false)
13 + #foreach($entry in $entries.split('\n'))
14 + #set($card = $entry.split('\|'))
21 21   <a href="$card[2]" style="text-decoration:none;">
22 22   <div style="
23 23   display:grid;
... ... @@ -32,10 +32,8 @@
32 32   </div>
33 33   </a>
34 34   #end
35 -
36 - $card[0],$card[1],$card[2]
29 + </div>
37 37  #end
38 -## </div>
39 39  {{/html}}
40 40  
41 41  ----