first card (with pic) and grid/loop for it
This commit is contained in:
parent
2638be4ad1
commit
f0dbd3c95c
BIN
app/assets/images/cms/large.webp
Normal file
BIN
app/assets/images/cms/large.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 211 KiB |
BIN
app/assets/images/cms/standard.webp
Normal file
BIN
app/assets/images/cms/standard.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 137 KiB |
7
app/views/cards/_card_full_image.haml
Normal file
7
app/views/cards/_card_full_image.haml
Normal file
@ -0,0 +1,7 @@
|
||||
%a.group.overflow-hidden.relative.flex.h-96.w-full.items-end.bg-black{:href => "#"}
|
||||
= image_for( element , "absolute inset-0 h-full w-full object-cover hover:scale-110 ease-in duration-700")
|
||||
.relative.w-full.bg-cyan-600.m-2.p-4.text-center.tracking-widest.text-white.transition-colors.group-hover:bg-cyan-700{:class => "sm:w-1/2"}
|
||||
%h3.text-lg.uppercase
|
||||
= element["header"]
|
||||
%p.mt-1.text-xs.font-medium
|
||||
= element["text"]
|
11
app/views/sections/_section_2_col.haml
Normal file
11
app/views/sections/_section_2_col.haml
Normal file
@ -0,0 +1,11 @@
|
||||
.flex.flex-col.bg-cyan-100.mx-5
|
||||
.flex.items-center.justify-center.flex-1
|
||||
.max-w-prose.px-4.py-8.mx-auto.text-center
|
||||
%h1.text-2xl.font-bold.tracking-tight.text-gray-900.sm:text-4xl
|
||||
= section["header"]
|
||||
%p.mt-4.text-gray-500
|
||||
= section["text"]
|
||||
- template = "cards/" + section["element_template"]
|
||||
.grid.grid-cols-2.gap-4
|
||||
- section["elements"].each do |element|
|
||||
= render( template , element: element)
|
@ -1,10 +1,7 @@
|
||||
.flex.flex-col.bg-white
|
||||
%img.object-cover.w-full.h-96{:alt => "", :src => "https://images.unsplash.com/photo-1558769132-cb1aea458c5e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1548&q=80"}/
|
||||
.flex.items-center.justify-center.flex-1
|
||||
.max-w-xl.px-4.py-8.mx-auto.text-center
|
||||
%h1.text-2xl.font-bold.tracking-tight.text-gray-900.sm:text-4xl
|
||||
= section["header"]
|
||||
%p.mt-4.text-gray-500
|
||||
= section["text"]
|
||||
%a.inline-block.px-5.py-3.mt-6.text-sm.font-medium.text-white.bg-indigo-600.rounded.hover:bg-indigo-700.focus:outline-none.focus:ring{:href => "#"}
|
||||
= section["button"]["text"]
|
||||
|
22
cms/studios.yaml
Normal file
22
cms/studios.yaml
Normal file
@ -0,0 +1,22 @@
|
||||
- template: section_2_col
|
||||
header: Sizes and kinds
|
||||
text:
|
||||
We offer different sizes and different types of studios for artists. There large and small rooms, with more or less light, also rooms with tiles for wet-work.
|
||||
The rooms are in the old hospital wings, so most are old patient rooms, but there are plenty of others too.
|
||||
Prices do not include electricity or vat, but do include the use of common spaces, see below.
|
||||
image: makerspace.webp
|
||||
element_template: card_full_image
|
||||
elements:
|
||||
- header: Standard
|
||||
text:
|
||||
This is the standard 2 patient room. They are mostly towards the south,
|
||||
so may have great, or too much light, depending on how you see it.
|
||||
The size is about 3x5, cost 120e.
|
||||
image: standard.webp
|
||||
- header: Large
|
||||
text:
|
||||
The old 4 patient rooms are basically twice the size as the small.
|
||||
They are large enough to be shared.
|
||||
The size is about 30m2 and the cost 240e.
|
||||
Like the small rooms these are south facing, very light.
|
||||
image: large.webp
|
Loading…
Reference in New Issue
Block a user