volunteers/app/views/kanta/show.html.haml
2023-02-05 16:18:18 +02:00

19 lines
271 B
Plaintext

.flex.justify-center
.flex.flex-col
= @image.attributes
%a.underline{ '@click' => "hi"}
Back
:opal
class Kanta
def initialize(hash)
hash.each do |k,v|
puts k
puts v
end
end
end
kanta = Kanta.new(bg: 'bg-cyan-200')