25 lines
1022 B
Plaintext
25 lines
1022 B
Plaintext
%p#notice= notice
|
|
.flex.flex-col.bg-white
|
|
.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
|
|
Page #{@page.name}
|
|
|
|
-@page.sections.each_with_index do |section , index|
|
|
.grid.grid-cols-6.gap-2.m-8{class: (index%2)==1 ? 'bg-cyan-50' : 'bg-red-50' }
|
|
.relative.block.border.border-gray-100
|
|
.p-4
|
|
%h3.mt-4.text-lg.font-bold Section #{index + 1}
|
|
%button.mt-4.rounded-lg.bg-yellow-500.p-4
|
|
=link_to "Up" , "/index"
|
|
%button.mt-4.rounded-lg.bg-yellow-500.p-4
|
|
=link_to "Down" , "/index"
|
|
%button.mt-4.rounded-lg.bg-blue-400.p-4
|
|
=link_to "Edit" , "/index"
|
|
%button.mt-4.rounded-lg.bg-cyan-400.p-4
|
|
=link_to "New" , "/index"
|
|
%button.mt-4.rounded-lg.bg-red-400.p-4
|
|
=link_to "Delete" , "/index"
|
|
-section.content.each do |key , value|
|
|
= render "cms/sections/#{key}", section: section , key: key , value: value
|