Skip to content

Commit 709a407

Browse files
authored
feat: add tags support (#542)
* feat: basic tags support * feat: add term page * chore: update css
1 parent 876eb3a commit 709a407

File tree

4 files changed

+85
-1
lines changed

4 files changed

+85
-1
lines changed

‎assets/css/compiled/main.css

+17
Original file line numberDiff line numberDiff line change
@@ -839,6 +839,9 @@ video {
839839
-moz-appearance: none;
840840
appearance: none;
841841
}
842+
.hx-grid-cols-1 {
843+
grid-template-columns: repeat(1, minmax(0, 1fr));
844+
}
842845
.hx-flex-col {
843846
flex-direction: column;
844847
}
@@ -3427,6 +3430,10 @@ body:is(html[class~="dark"] *) {
34273430
flex-shrink: 0;
34283431
}
34293432

3433+
.md\:hx-grid-cols-2 {
3434+
grid-template-columns: repeat(2, minmax(0, 1fr));
3435+
}
3436+
34303437
.md\:hx-justify-start {
34313438
justify-content: flex-start;
34323439
}
@@ -3456,11 +3463,21 @@ body:is(html[class~="dark"] *) {
34563463
font-size: .875rem;
34573464
}
34583465
}
3466+
@media (min-width: 1024px) {
3467+
3468+
.lg\:hx-grid-cols-3 {
3469+
grid-template-columns: repeat(3, minmax(0, 1fr));
3470+
}
3471+
}
34593472
@media (min-width: 1280px) {
34603473

34613474
.xl\:hx-block {
34623475
display: block;
34633476
}
3477+
3478+
.xl\:hx-grid-cols-4 {
3479+
grid-template-columns: repeat(4, minmax(0, 1fr));
3480+
}
34643481
}
34653482
.ltr\:hx-right-1\.5:where([dir="ltr"], [dir="ltr"] *) {
34663483
right: 0.375rem;

‎exampleSite/hugo_stats.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,7 @@
333333
"hx-gap-x-1.5",
334334
"hx-gap-y-2",
335335
"hx-grid",
336+
"hx-grid-cols-1",
336337
"hx-group",
337338
"hx-group/code",
338339
"hx-group/copybtn",
@@ -545,6 +546,7 @@
545546
"language-options",
546547
"language-switcher",
547548
"last-of-type:hx-mb-0",
549+
"lg:hx-grid-cols-3",
548550
"lntable",
549551
"lntd",
550552
"ltr:before:hx-left-0",
@@ -577,6 +579,7 @@
577579
"max-sm:hx-grid-cols-1",
578580
"max-xl:hx-hidden",
579581
"md:hx-aspect-[1.1/1]",
582+
"md:hx-grid-cols-2",
580583
"md:hx-h-[calc(100vh-var(--navbar-height)-var(--menu-height))]",
581584
"md:hx-hidden",
582585
"md:hx-inline-block",
@@ -640,7 +643,8 @@
640643
"subheading-anchor",
641644
"success-icon",
642645
"theme-toggle",
643-
"xl:hx-block"
646+
"xl:hx-block",
647+
"xl:hx-grid-cols-4"
644648
],
645649
"ids": null
646650
}

‎layouts/_default/taxonomy.html

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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">&nbsp;{{ .Count }}</span>
23+
</a>
24+
</div>
25+
{{ end }}
26+
</div>
27+
</main>
28+
</article>
29+
</div>
30+
{{ end }}

‎layouts/_default/term.html

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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 }}

0 commit comments

Comments
 (0)