File tree 4 files changed +85
-1
lines changed
4 files changed +85
-1
lines changed Original file line number Diff line number Diff line change @@ -839,6 +839,9 @@ video {
839
839
-moz-appearance : none;
840
840
appearance : none;
841
841
}
842
+ .hx-grid-cols-1 {
843
+ grid-template-columns : repeat (1 , minmax (0 , 1fr ));
844
+ }
842
845
.hx-flex-col {
843
846
flex-direction : column;
844
847
}
@@ -3427,6 +3430,10 @@ body:is(html[class~="dark"] *) {
3427
3430
flex-shrink : 0 ;
3428
3431
}
3429
3432
3433
+ .md\:hx-grid-cols-2 {
3434
+ grid-template-columns : repeat (2 , minmax (0 , 1fr ));
3435
+ }
3436
+
3430
3437
.md\:hx-justify-start {
3431
3438
justify-content : flex-start;
3432
3439
}
@@ -3456,11 +3463,21 @@ body:is(html[class~="dark"] *) {
3456
3463
font-size : .875rem ;
3457
3464
}
3458
3465
}
3466
+ @media (min-width : 1024px ) {
3467
+
3468
+ .lg\:hx-grid-cols-3 {
3469
+ grid-template-columns : repeat (3 , minmax (0 , 1fr ));
3470
+ }
3471
+ }
3459
3472
@media (min-width : 1280px ) {
3460
3473
3461
3474
.xl\:hx-block {
3462
3475
display : block;
3463
3476
}
3477
+
3478
+ .xl\:hx-grid-cols-4 {
3479
+ grid-template-columns : repeat (4 , minmax (0 , 1fr ));
3480
+ }
3464
3481
}
3465
3482
.ltr\:hx-right-1\. 5: where ([dir = "ltr" ], [dir = "ltr" ] * ) {
3466
3483
right : 0.375rem ;
Original file line number Diff line number Diff line change 333
333
" hx-gap-x-1.5" ,
334
334
" hx-gap-y-2" ,
335
335
" hx-grid" ,
336
+ " hx-grid-cols-1" ,
336
337
" hx-group" ,
337
338
" hx-group/code" ,
338
339
" hx-group/copybtn" ,
545
546
" language-options" ,
546
547
" language-switcher" ,
547
548
" last-of-type:hx-mb-0" ,
549
+ " lg:hx-grid-cols-3" ,
548
550
" lntable" ,
549
551
" lntd" ,
550
552
" ltr:before:hx-left-0" ,
577
579
" max-sm:hx-grid-cols-1" ,
578
580
" max-xl:hx-hidden" ,
579
581
" md:hx-aspect-[1.1/1]" ,
582
+ " md:hx-grid-cols-2" ,
580
583
" md:hx-h-[calc(100vh-var(--navbar-height)-var(--menu-height))]" ,
581
584
" md:hx-hidden" ,
582
585
" md:hx-inline-block" ,
640
643
" subheading-anchor" ,
641
644
" success-icon" ,
642
645
" theme-toggle" ,
643
- " xl:hx-block"
646
+ " xl:hx-block" ,
647
+ " xl:hx-grid-cols-4"
644
648
],
645
649
"ids" : null
646
650
}
Original file line number Diff line number Diff line change
1
+ {{ define "main" }}
2
+ < div class ='hx-mx-auto hx-flex {{ partial "utils/page-width" . }} '>
3
+ {{ partial "sidebar.html" (dict "context" . "disableSidebar" true "displayPlaceholder" true) }}
4
+ {{ partial "toc.html" (dict "Params" (dict "toc" false)) }}
5
+ < article class ="hx-w-full hx-break-words hx-flex hx-min-h-[calc(100vh-var(--navbar-height))] hx-min-w-0 hx-justify-center hx-pb-8 hx-pr-[calc(env(safe-area-inset-right)-1.5rem)] ">
6
+ < main class ="hx-w-full hx-min-w-0 hx-max-w-6xl hx-px-6 hx-pt-4 md:hx-px-12 ">
7
+ < br class ="hx-mt-1.5 hx-text-sm " />
8
+ {{ if .Title }}< h1 class ="hx-text-center hx-mt-2 hx-text-4xl hx-font-bold hx-tracking-tight hx-text-slate-900 dark:hx-text-slate-100 "> {{ .Title }}</ h1 > {{ end }}
9
+ < div class ="hx-mb-16 "> </ div >
10
+ < div class ="content ">
11
+ {{ .Content }}
12
+ </ div >
13
+ < div class ="hx-grid hx-grid-cols-1 md:hx-grid-cols-2 lg:hx-grid-cols-3 xl:hx-grid-cols-4 hx-gap-4 ">
14
+ {{ range .Data.Terms }}
15
+ < div class ="hx-w-full ">
16
+ < a
17
+ href ="{{ .Page.RelPermalink }} "
18
+ title ="{{ .Page.LinkTitle }} "
19
+ class ="hx-font-medium hover:hx-text-primary-600 "
20
+ >
21
+ {{- .Page.LinkTitle -}}
22
+ < span class ="hx-text-sm hx-text-gray-500 "> {{ .Count }}</ span >
23
+ </ a >
24
+ </ div >
25
+ {{ end }}
26
+ </ div >
27
+ </ main >
28
+ </ article >
29
+ </ div >
30
+ {{ end }}
Original file line number Diff line number Diff line change
1
+ {{ define "main" }}
2
+ < div class ='hx-mx-auto hx-flex {{ partial "utils/page-width" . }} '>
3
+ {{ partial "sidebar.html" (dict "context" . "disableSidebar" true "displayPlaceholder" true) }}
4
+ {{ partial "toc.html" (dict "Params" (dict "toc" false)) }}
5
+ < article class ="hx-w-full hx-break-words hx-flex hx-min-h-[calc(100vh-var(--navbar-height))] hx-min-w-0 hx-justify-center hx-pb-8 hx-pr-[calc(env(safe-area-inset-right)-1.5rem)] ">
6
+ < main class ="hx-w-full hx-min-w-0 hx-max-w-6xl hx-px-6 hx-pt-4 md:hx-px-12 ">
7
+ < br class ="hx-mt-1.5 hx-text-sm " />
8
+ {{ if .Title }}< h1 class ="hx-text-center hx-mt-2 hx-text-4xl hx-font-bold hx-tracking-tight hx-text-slate-900 dark:hx-text-slate-100 "> {{ .Title }}</ h1 > {{ end }}
9
+ < div class ="hx-mb-16 "> </ div >
10
+ < div class ="content ">
11
+ {{ .Content }}
12
+ </ div >
13
+ < div >
14
+ {{- range .Pages -}}
15
+ < div >
16
+ < h3 >
17
+ < a
18
+ style ="color: inherit; text-decoration: none; "
19
+ class ="hx-block hx-font-semibold hx-mt-8 hx-text-2xl "
20
+ href ="{{ .RelPermalink }} "
21
+ title ="{{ .LinkTitle }} "
22
+ >
23
+ {{ .Title }}
24
+ </ a >
25
+ </ h3 >
26
+ < p class ="hx-opacity-50 hx-text-sm hx-leading-7 "> {{ partial "utils/format-date" .Date }}</ p >
27
+ </ div >
28
+ {{- end -}}
29
+ </ div >
30
+ </ main >
31
+ </ article >
32
+ </ div >
33
+ {{ end }}
You can’t perform that action at this time.
0 commit comments