Merge pull request #2010 from wermos/timeline-improvements

Remove unused option in `timeline` shortcode
This commit is contained in:
Nuno Coração 2025-03-29 23:32:15 +00:00 committed by GitHub
commit ce3c37324b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View file

@ -2,7 +2,6 @@
{{ $header := .Get "header" }} {{ $header := .Get "header" }}
{{ $badge := .Get "badge" }} {{ $badge := .Get "badge" }}
{{ $subheader := .Get "subheader" }} {{ $subheader := .Get "subheader" }}
{{ $text := .Get "text" }}
<li> <li>
<div class="flex flex-start"> <div class="flex flex-start">
<div class="bg-primary-500 dark:bg-primary-300 text-neutral-50 dark:text-neutral-700 min-w-[30px] h-8 text-2xl flex items-center justify-center rounded-full -ml-12 mt-5"> <div class="bg-primary-500 dark:bg-primary-300 text-neutral-50 dark:text-neutral-700 min-w-[30px] h-8 text-2xl flex items-center justify-center rounded-full -ml-12 mt-5">
@ -17,7 +16,7 @@
{{ end }} {{ end }}
{{ if $badge }} {{ if $badge }}
<h3 class=""> <h3 class="">
{{ partial "badge" $badge}} {{ partial "badge" $badge}}
</h3> </h3>
{{ end }} {{ end }}
</div> </div>