blob: c5d51e7916dc131794af4dd59d7134d9f4d5cad8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{{ define "main" }}
{{ $articleType := .Params.type | default "life" }}
{{ $template := printf "article-types/%s.html" $articleType }}
<article class="mx-auto px-4 py-12">
<div class="grid md:grid-cols-3 gap-8">
<!-- Article section -->
<div class="md:col-span-2">
<!-- Article header -->
{{ partial "article-header.html" . }}
<!-- Type-specific content -->
{{ partial $template . }}
<!-- Tags section -->
{{ if .Params.tags }}
<div class="border-t border-border pt-8">
<h3 class="text-lg font-semibold text-accent mb-4">{{ i18n "tags" }}</h3>
<div class="flex flex-wrap gap-2">
{{ $lang := .Lang }}
{{ range .Params.tags }}
{{ $tagUrl := printf "/tags/%s/" (. | urlize) }}
{{ if eq $lang "it" }}
{{ $tagUrl = printf "/it/tags/%s/" (. | urlize) }}
{{ end }}
<a
href="{{ $tagUrl }}"
class="inline-flex items-center px-3 py-1 border border-border/30 rounded hover:border-accent/50 hover:text-accent transition-colors text-sm"
>
{{ . }}
</a>
{{ end }}
</div>
</div>
{{ end }}
</div>
<!-- Sidebar -->
{{ partial "sidebar.html" . }}
</div>
</article>
{{ end }}
|