summaryrefslogtreecommitdiffstats
path: root/layouts/partials/article-types/photo.html
blob: 743e02a2a1f8a6efd3ee54b4a6cde71db000db02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ if .Params.featured_image }}
<figure class="mb-8">
  <img
    src="{{ .Params.featured_image }}"
    alt="{{ .Title }}"
    loading="lazy"
    class="w-full h-auto rounded-lg border border-border/30"
  />
  {{ if .Params.featured_image_caption }}
  <figcaption class="bg-surface/30 p-4 text-sm text-text-dim rounded-b-lg">
    {{ .Params.featured_image_caption }}
  </figcaption>
  {{ end }}
</figure>
{{ end }}

<div class="prose prose-invert max-w-none mb-12">
  {{ .Content }}
</div>