make card section work without header and text

This commit is contained in:
Torsten 2023-01-05 17:47:50 +02:00
parent c7cad11b89
commit 14e3564fa4
3 changed files with 16 additions and 5 deletions

View File

@ -117,6 +117,10 @@ module Merged
columns = "grid-cols-1 md:grid-cols-2 lg:grid-cols-3"
when "4"
columns = "grid-cols-1 md:grid-cols-2 lg:grid-cols-4"
when "5"
columns = "grid-cols-1 md:grid-cols-3 lg:grid-cols-5"
when "6"
columns = "grid-cols-2 md:grid-cols-4 lg:grid-cols-6"
else # two
columns = "grid-cols-1 md:grid-cols-2"
end

View File

@ -1,10 +1,16 @@
%section.m-5.md:m-12.lg:m-20{ options(section , :background , :color)}
.flex.justify-center
.max-w-prose.px-4.py-16{ options(section , :text_align)}
%h1.text-2xl.font-bold.tracking-tight.sm:text-4xl
= section.header
.mt-4.text-lg.pt-10{ prose_classes }
= markdown(section)
- unless section.header.blank? and section.text.blank?
.max-w-prose.px-4.py-16{ options(section , :text_align)}
- unless section.header.blank?
%h1.text-2xl.font-bold.tracking-tight.sm:text-4xl
= section.header
- if section.has_option?("subheader")
%h2.text-xl.pt-10.font-bold.tracking-tight.sm:text-2xl
= section.option("subheader")
- unless section.text.blank?
.text-lg.pt-10{ prose_classes }
= markdown(section)
- template = "merged/view/cards/" + section.card_template
.grid{ column_option(section)}
- section.cards.each do |card|

View File

@ -10,6 +10,7 @@
options:
- background
- columns
- subheader
- color
- text_align
- template: section_full_up