Files
chill.social/themes/chill-theme/layouts/partials/shortcodes/feature.html
Boris Waaub 9073e8b506 Refactor feature shortcodes for improved layout and styling
- Updated the feature shortcode in both `feature.html` files to change the list item class from `items-center` to `items-start` for better alignment.
- Adjusted the SVG icon class to include `flex-shrink-0 mt-1` and set minimum width and height for consistent sizing.
- Enhanced the CSS source map for `custom.css` to improve debugging and maintainability.
2026-02-09 12:15:51 +01:00

58 lines
2.2 KiB
HTML

{{/* Feature Partial (utilisé par le carousel) */}}
{{ $title := .title }}
{{ $titleBtn := .titleBtn}}
{{ $description := .description }}
{{ $badge := .badge }}
{{ $badgeColor := .badgeColor | default "chill-blue" }}
{{ $image := .image }}
{{ $buttonText := .buttonText | default "Learn More" }}
{{ $buttonLink := .buttonLink | default "#" }}
{{ $imagePosition := .imagePosition | default "right" }}
{{ $features := split (.features) "," }}
<div class="grid lg:grid-cols-2 gap-12 items-center badge-{{ $badgeColor }}">
{{ if eq $imagePosition "left" }}
<div class="order-2 lg:order-1">
<img src="{{ $image | relURL }}" alt="{{ $title }}" class="rounded-xl shadow-elevation">
</div>
{{ end }}
<div class="space-y-6 {{ if eq $imagePosition "left" }}order-1 lg:order-2{{ end }}">
<style>
.badge {
background-color: color-mix(in srgb, var(--badge-color) 40%, transparent);
color: #222;
}
.badge-icon {
color: #f46839;
}
</style>
<span class="badge inline-flex items-center rounded-full px-4 py-1.5 text-sm font-medium">
{{ $badge }}
</span>
<h3 class="text-2xl md:text-3xl font-bold">{{ $title }}</h3>
<p class="text-lg text-gray-600">{{ $description }}</p>
<ul class="space-y-4">
{{ range $features }}
<li class="flex items-start space-x-3">
<svg class="badge-icon w-5 h-5 flex-shrink-0 mt-1" fill="currentColor" viewBox="0 0 20 20" style="min-width:1.25rem; min-height:1.25rem;">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/>
</svg>
<span>{{ . | default "" }}</span>
</li>
{{ end }}
</ul>
<a href="{{ $buttonLink }}" class="btn-primary inline-block">{{ $buttonText }}</a>
</div>
{{ if ne $imagePosition "left" }}
<div>
<img src="{{ $image | relURL }}" alt="{{ $title }}" class="rounded-xl shadow-elevation">
</div>
{{ end }}
</div>